diff options
author | Dave Whiteland <dave@mysociety.org> | 2013-01-10 16:44:54 +0000 |
---|---|---|
committer | Dave Whiteland <dave@mysociety.org> | 2013-01-10 16:44:54 +0000 |
commit | dd9562bf1251486001470bc79d1248a273cd9e75 (patch) | |
tree | ec2f8f3b3f6b7fab8e2f0d550c0543b7b40fd348 | |
parent | 7f8377bd10b6e1a5657b5799ea0abb682f7636c9 (diff) |
move colours into _colours, admin table css tweaks
-rw-r--r-- | web/cobrands/zurich/_colours.scss | 6 | ||||
-rw-r--r-- | web/cobrands/zurich/_zurich.scss | 13 |
2 files changed, 16 insertions, 3 deletions
diff --git a/web/cobrands/zurich/_colours.scss b/web/cobrands/zurich/_colours.scss index 8e8f4c9cd..b07bbdf06 100644 --- a/web/cobrands/zurich/_colours.scss +++ b/web/cobrands/zurich/_colours.scss @@ -13,3 +13,9 @@ $col_click_map_dark: darken($lighter_blue, 20%); $col_fixed_label: #00BD08; $col_fixed_label_dark: #4B8304; +// Zurich admin tables: + +$table_border_color: #ccc; +$table_heading_bg_col: #595959; +$table_heading_col: #fff; +$table_heading_underline_col: #393939; diff --git a/web/cobrands/zurich/_zurich.scss b/web/cobrands/zurich/_zurich.scss index 2fabfd324..287b653ed 100644 --- a/web/cobrands/zurich/_zurich.scss +++ b/web/cobrands/zurich/_zurich.scss @@ -32,10 +32,17 @@ a:hover { } table.admin { + width: 100%; + font-size: 0.9em; + border: 1px solid $table_border_color; + border-collapse:collapse; + th, td { + padding: 0.666em 0.5em; + border: 1px solid $table_border_color; + } th { color: white; - background-color: #595959; - border-bottom: 2px solid #393939; - padding: 0.8em 0.5em; + background-color: $table_heading_bg_col; + border-bottom: 2px solid $table_heading_underline_col; } }
\ No newline at end of file |