From 886a7239b67079e8b2545311fccf2534397039f4 Mon Sep 17 00:00:00 2001 From: Mark Seymour Date: Thu, 21 Feb 2013 15:17:38 -0400 Subject: [PATCH 1/2] Adding specific styling to definition list in the show users page to make the page appear less cluttered and more concise. --- app/assets/stylesheets/specific/users.css.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/app/assets/stylesheets/specific/users.css.scss b/app/assets/stylesheets/specific/users.css.scss index b2bb426c3..8a3e0d519 100644 --- a/app/assets/stylesheets/specific/users.css.scss +++ b/app/assets/stylesheets/specific/users.css.scss @@ -1,6 +1,21 @@ @import "../common/000_vars.css.scss"; div#c-users { + div#a-show { + dl { + dt { + width: 12em; + float: left; + clear: left; + margin-right: .75em; + } + + dt:after { + content: ':'; + } + } + } + div#a-edit { h1 { margin-bottom: 0.5em; From fff0a5cc3a794e729218d9ea504ff8406ff7c004 Mon Sep 17 00:00:00 2001 From: Mark Seymour Date: Thu, 21 Feb 2013 15:21:38 -0400 Subject: [PATCH 2/2] Page background should be white in order to override browser's default (which may be of another colour.) --- app/assets/stylesheets/common/020_base.css.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/common/020_base.css.scss b/app/assets/stylesheets/common/020_base.css.scss index 3dd6ff078..266cf479a 100644 --- a/app/assets/stylesheets/common/020_base.css.scss +++ b/app/assets/stylesheets/common/020_base.css.scss @@ -1,6 +1,7 @@ @import "000_vars.css.scss"; body { + background-color: #FFF; font-family: Verdana, Helvetica, sans-serif; padding: 0; margin: 0;