aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--web/cobrands/zurich/_colours.scss6
-rw-r--r--web/cobrands/zurich/_zurich.scss13
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