From 6053521d9c977f1414d1254e56415514795eb7a7 Mon Sep 17 00:00:00 2001 From: Jonas Oberg Date: Tue, 9 Apr 2013 07:04:38 +0000 Subject: Updated MapQuest links per instructions --- web/js/map-OpenStreetMap.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'web') diff --git a/web/js/map-OpenStreetMap.js b/web/js/map-OpenStreetMap.js index 9b8916946..79c646f7b 100644 --- a/web/js/map-OpenStreetMap.js +++ b/web/js/map-OpenStreetMap.js @@ -94,10 +94,10 @@ OpenLayers.Layer.OSM.MapQuestOpen = OpenLayers.Class(OpenLayers.Layer.OSM, { */ initialize: function(name, options) { var url = [ - "http://otile1.mqcdn.com/tiles/1.0.0/osm/${z}/${x}/${y}.png", - "http://otile2.mqcdn.com/tiles/1.0.0/osm/${z}/${x}/${y}.png", - "http://otile3.mqcdn.com/tiles/1.0.0/osm/${z}/${x}/${y}.png", - "http://otile4.mqcdn.com/tiles/1.0.0/osm/${z}/${x}/${y}.png" + "http://otile1.mqcdn.com/tiles/1.0.0/map/${z}/${x}/${y}.png", + "http://otile2.mqcdn.com/tiles/1.0.0/map/${z}/${x}/${y}.png", + "http://otile3.mqcdn.com/tiles/1.0.0/map/${z}/${x}/${y}.png", + "http://otile4.mqcdn.com/tiles/1.0.0/map/${z}/${x}/${y}.png" ]; options = OpenLayers.Util.extend({ /* Below line added to OSM's file in order to allow minimum zoom level */ -- cgit v1.2.3 From 8140fcb14ce0a32273d3e98327968d77e98fa002 Mon Sep 17 00:00:00 2001 From: Matthew Somerville Date: Sat, 31 Aug 2013 11:56:47 +0100 Subject: Make 'Permalink' JS string translatable. --- web/cobrands/fixmystreet/fixmystreet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web') diff --git a/web/cobrands/fixmystreet/fixmystreet.js b/web/cobrands/fixmystreet/fixmystreet.js index f638eed9a..1bcb8f3c0 100644 --- a/web/cobrands/fixmystreet/fixmystreet.js +++ b/web/cobrands/fixmystreet/fixmystreet.js @@ -379,7 +379,7 @@ $.fn.drawer = function(id, ajax) { //add permalink on desktop, force hide on mobile if (cobrand != 'zurich') { - $('#sub_map_links').append('Permalink'); + $('#sub_map_links').append('' + translation_strings.permalink + ''); } if($('.mobile').length){ -- cgit v1.2.3 From 0aa4e59e5a9e011b9bab40a6e1715687a62d3f94 Mon Sep 17 00:00:00 2001 From: Dave Whiteland Date: Sun, 4 Aug 2013 17:02:32 +0100 Subject: add admin info/warning styles --- web/cobrands/sass/_layout.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'web') diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index 07f944ffa..efe25a427 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -1033,6 +1033,21 @@ $button_bg_col: #a1a1a1; // also search bar (tables) padding: 3px 0.5em; } } + .fms-admin-warning, .fms-admin-info { + padding: 1em; + font-size: 80%; + border-style: solid; + border-width: 1px; + border-left-width: 1em; + } + .fms-admin-warning { + border-color: #f99; + background-color: #ffe1e1; + } + .fms-admin-info { + border-color: #9f9; + background-color: #e1ffe1; + } } -- cgit v1.2.3 From e69bc54641b9a584439ec934f1ed54e3e310e023 Mon Sep 17 00:00:00 2001 From: Dave Whiteland Date: Tue, 6 Aug 2013 18:24:04 +0100 Subject: make js available in admin pages --- web/js/fixmystreet-admin.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 web/js/fixmystreet-admin.js (limited to 'web') diff --git a/web/js/fixmystreet-admin.js b/web/js/fixmystreet-admin.js new file mode 100644 index 000000000..f13a66d9c --- /dev/null +++ b/web/js/fixmystreet-admin.js @@ -0,0 +1,4 @@ +$(function(){ + // available for admin pages +}); + -- cgit v1.2.3 From 8acaea9f91c7db24871e6e1bd9268d9bf3b0d52d Mon Sep 17 00:00:00 2001 From: Dave Whiteland Date: Wed, 7 Aug 2013 11:28:23 +0100 Subject: hide open311 inputs for bodies unless needed basically if send method is not email (or there's an endpoint value), don't show the form Maybe we need to have an "show all fields" button/link but for normal use I think this is OK --- web/js/fixmystreet-admin.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'web') diff --git a/web/js/fixmystreet-admin.js b/web/js/fixmystreet-admin.js index f13a66d9c..d55bbab21 100644 --- a/web/js/fixmystreet-admin.js +++ b/web/js/fixmystreet-admin.js @@ -1,4 +1,25 @@ $(function(){ // available for admin pages + + // hide the open311_only section and reveal it only when send_method is relevant + var $open311_only = $('.admin-open311-only'); + if ($open311_only) { + function hide_or_show_open311() { + var send_method = $('#send_method').val(); + var show_open311 = false; + if ($('#endpoint').val()) { + show_open311 = true; // always show the form if there is an endpoint value + } else if (send_method && send_method.toLowerCase() != 'email') { + show_open311 = true; + } + if (show_open311) { + $open311_only.slideDown(); + } else { + $open311_only.slideUp(); + } + } + $('#send_method').on('change', hide_or_show_open311); + hide_or_show_open311(); + } }); -- cgit v1.2.3 From e237198173f3307fdf8c6866831116ae2f1f9f4a Mon Sep 17 00:00:00 2001 From: Dave Whiteland Date: Wed, 7 Aug 2013 12:50:25 +0100 Subject: move new admin styles into _layout.scss this is probably better practice since we can use sass Maybe need to bring the other style declarations in header into scss file too --- web/cobrands/sass/_layout.scss | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'web') diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index efe25a427..9f7057587 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -1048,6 +1048,11 @@ $button_bg_col: #a1a1a1; // also search bar (tables) border-color: #9f9; background-color: #e1ffe1; } + .admin-open311-only { + border:1px solid #666; + padding:1em; + margin: 1em 0; + } } -- cgit v1.2.3 From 75419ceb142852db15d0d72e05400b163c40caf6 Mon Sep 17 00:00:00 2001 From: Dave Whiteland Date: Wed, 7 Aug 2013 14:18:32 +0100 Subject: add display-on-click hints --- web/cobrands/sass/_layout.scss | 42 ++++++++++++++++++++++++++++++++++++++++-- web/js/fixmystreet-admin.js | 10 ++++++++++ 2 files changed, 50 insertions(+), 2 deletions(-) (limited to 'web') diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index 9f7057587..f745e266f 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -1053,10 +1053,48 @@ $button_bg_col: #a1a1a1; // also search bar (tables) padding:1em; margin: 1em 0; } + .admin-hint { + cursor: pointer; + display: inline-block; + float:left; + overflow: hidden; + padding: 0.2em; + margin-right: 0.666em; + text-align: center; + color: #fff; + font-weight: bold; + background-color: #f93; + -moz-border-radius: 0.333em; + -webkit-border-radius: 0.333em; + border-radius: 0.333em; + p { + display:none; + } + &:before { content: "?" } + &.admin-hint-show { + text-align: left; + display: block; + float:none; + margin:1em 0; + &:before { content: "" } + background-color: inherit !important; + p { + font-weight: normal; + display: block; + font-size: 80%; + background-color: #ff9; + color: #000; + border-style: solid; + border-width: 1px; + border-left-width: 1em; + border-color: #f93; + padding:1em; + margin: 0; + } + } + } } - - /* MEDIA QUERIES */ @media only screen and (min-width: 48em) and (max-width: 61em) { .container { diff --git a/web/js/fixmystreet-admin.js b/web/js/fixmystreet-admin.js index d55bbab21..27be7f14d 100644 --- a/web/js/fixmystreet-admin.js +++ b/web/js/fixmystreet-admin.js @@ -21,5 +21,15 @@ $(function(){ $('#send_method').on('change', hide_or_show_open311); hide_or_show_open311(); } + + // admin hints: maybe better implemented as tooltips? + $(".admin-hint").on('click', function(){ + if ($(this).hasClass('admin-hint-show')) { + $(this).removeClass('admin-hint-show'); + } else { + $(this).addClass('admin-hint-show'); + } + }); + }); -- cgit v1.2.3 From 1105cd1f0df1de0569d9f1530a86c21ca34ea775 Mon Sep 17 00:00:00 2001 From: Dave Whiteland Date: Wed, 7 Aug 2013 16:11:59 +0100 Subject: tweaks to admin hint CSS --- web/cobrands/sass/_layout.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'web') diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index f745e266f..658fa095b 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -1035,7 +1035,7 @@ $button_bg_col: #a1a1a1; // also search bar (tables) } .fms-admin-warning, .fms-admin-info { padding: 1em; - font-size: 80%; + font-size: 90%; border-style: solid; border-width: 1px; border-left-width: 1em; @@ -1054,6 +1054,7 @@ $button_bg_col: #a1a1a1; // also search bar (tables) margin: 1em 0; } .admin-hint { + font-size: 80%; // little question marks are small cursor: pointer; display: inline-block; float:left; @@ -1072,6 +1073,7 @@ $button_bg_col: #a1a1a1; // also search bar (tables) } &:before { content: "?" } &.admin-hint-show { + font-size: 90%; text-align: left; display: block; float:none; @@ -1081,7 +1083,6 @@ $button_bg_col: #a1a1a1; // also search bar (tables) p { font-weight: normal; display: block; - font-size: 80%; background-color: #ff9; color: #000; border-style: solid; -- cgit v1.2.3 From f574cd68ac232364ca0d09b95d9f709cd37ad0a5 Mon Sep 17 00:00:00 2001 From: Dave Whiteland Date: Wed, 7 Aug 2013 16:32:31 +0100 Subject: don't hide with slideUp on page load if open311 shouldn't be show, hide it straight away (slideUp animation was distracting) --- web/js/fixmystreet-admin.js | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'web') diff --git a/web/js/fixmystreet-admin.js b/web/js/fixmystreet-admin.js index 27be7f14d..a65fa3650 100644 --- a/web/js/fixmystreet-admin.js +++ b/web/js/fixmystreet-admin.js @@ -4,7 +4,7 @@ $(function(){ // hide the open311_only section and reveal it only when send_method is relevant var $open311_only = $('.admin-open311-only'); if ($open311_only) { - function hide_or_show_open311() { + function hide_or_show_open311(hide_fast) { var send_method = $('#send_method').val(); var show_open311 = false; if ($('#endpoint').val()) { @@ -12,14 +12,18 @@ $(function(){ } else if (send_method && send_method.toLowerCase() != 'email') { show_open311 = true; } - if (show_open311) { - $open311_only.slideDown(); - } else { - $open311_only.slideUp(); + if (show_open311) { + $open311_only.slideDown(); + } else { + if (hide_fast) { + $open311_only.hide(); + } else { + $open311_only.slideUp(); + } } } $('#send_method').on('change', hide_or_show_open311); - hide_or_show_open311(); + hide_or_show_open311(true); } // admin hints: maybe better implemented as tooltips? -- cgit v1.2.3 From 4ad30bf9594876373e91a0f67b8dddffc2c22467 Mon Sep 17 00:00:00 2001 From: Dave Whiteland Date: Wed, 7 Aug 2013 18:14:02 +0100 Subject: move those divs out of the paragraphs! added bottom margin to info boxes to fix layout on body form (hint div floating beneath it) --- web/cobrands/sass/_layout.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'web') diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index 658fa095b..f865d5bbe 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -1039,6 +1039,7 @@ $button_bg_col: #a1a1a1; // also search bar (tables) border-style: solid; border-width: 1px; border-left-width: 1em; + margin-bottom: 1em; } .fms-admin-warning { border-color: #f99; @@ -1056,7 +1057,7 @@ $button_bg_col: #a1a1a1; // also search bar (tables) .admin-hint { font-size: 80%; // little question marks are small cursor: pointer; - display: inline-block; + display: block; float:left; overflow: hidden; padding: 0.2em; -- cgit v1.2.3 From 3793f4aa12875cb423f9061db115524c694a215d Mon Sep 17 00:00:00 2001 From: Dave Whiteland Date: Thu, 8 Aug 2013 12:13:43 +0100 Subject: add no-bullets style declaration to default admin CSS --- web/cobrands/sass/_layout.scss | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'web') diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index f865d5bbe..8bcb6fed6 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -1095,6 +1095,12 @@ $button_bg_col: #a1a1a1; // also search bar (tables) } } } + .no-bullets { + margin-left: 0; + > li { + list-style: none; + } + } } /* MEDIA QUERIES */ -- cgit v1.2.3 From 9ec2ecbfdb23161c455b6ab1354f28f717f7e30d Mon Sep 17 00:00:00 2001 From: Dave Whiteland Date: Thu, 8 Aug 2013 14:20:45 +0100 Subject: indicated deleted categories clearly on the body admin this has been catching me out for years :-) --- web/cobrands/sass/_layout.scss | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'web') diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index 8bcb6fed6..4d32f6062 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -1032,6 +1032,12 @@ $button_bg_col: #a1a1a1; // also search bar (tables) border: none; padding: 3px 0.5em; } + tr.is-deleted { + background-color: #ffdddd; + td.contact-category { + text-decoration: line-through; + } + } } .fms-admin-warning, .fms-admin-info { padding: 1em; -- cgit v1.2.3 From 26a116610778e8099a309bf8f6a14fe247bef0a7 Mon Sep 17 00:00:00 2001 From: Dave Whiteland Date: Thu, 8 Aug 2013 15:01:00 +0100 Subject: add toggle button to hide contacts, closes #505 --- web/js/fixmystreet-admin.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'web') diff --git a/web/js/fixmystreet-admin.js b/web/js/fixmystreet-admin.js index a65fa3650..cd74522ec 100644 --- a/web/js/fixmystreet-admin.js +++ b/web/js/fixmystreet-admin.js @@ -35,5 +35,24 @@ $(function(){ } }); + // on a body's page, hide/show deleted contact categories + var $table_with_deleted_contacts = $('table tr.is-deleted td.contact-category'); + if ($table_with_deleted_contacts.length == 1) { + $table_with_deleted_contacts = $table_with_deleted_contacts.closest('table'); + var $toggle_deleted_btn = $(""); + $table_with_deleted_contacts.before($toggle_deleted_btn); + $toggle_deleted_btn.on('click', function(e){ + e.preventDefault(); + var $cols = $table_with_deleted_contacts.find('tr.is-deleted'); + if ($cols.first().is(':visible')) { + $cols.hide(); + $(this).prop("value", 'Show deleted contacts'); + } else { + $cols.show(); + $(this).prop("value", 'Hide deleted contacts'); + } + }) + } + }); -- cgit v1.2.3 From 86a366703507d965622a059c56588aeb1a72bc47 Mon Sep 17 00:00:00 2001 From: Dave Whiteland Date: Wed, 14 Aug 2013 19:14:11 +0100 Subject: jslint fixes --- web/js/fixmystreet-admin.js | 36 +++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) (limited to 'web') diff --git a/web/js/fixmystreet-admin.js b/web/js/fixmystreet-admin.js index cd74522ec..64f73ebb7 100644 --- a/web/js/fixmystreet-admin.js +++ b/web/js/fixmystreet-admin.js @@ -3,25 +3,27 @@ $(function(){ // hide the open311_only section and reveal it only when send_method is relevant var $open311_only = $('.admin-open311-only'); - if ($open311_only) { - function hide_or_show_open311(hide_fast) { - var send_method = $('#send_method').val(); - var show_open311 = false; - if ($('#endpoint').val()) { - show_open311 = true; // always show the form if there is an endpoint value - } else if (send_method && send_method.toLowerCase() != 'email') { - show_open311 = true; - } - if (show_open311) { - $open311_only.slideDown(); + + function hide_or_show_open311(hide_fast) { + var send_method = $('#send_method').val(); + var show_open311 = false; + if ($('#endpoint').val()) { + show_open311 = true; // always show the form if there is an endpoint value + } else if (send_method && send_method.toLowerCase() != 'email') { + show_open311 = true; + } + if (show_open311) { + $open311_only.slideDown(); + } else { + if (hide_fast) { + $open311_only.hide(); } else { - if (hide_fast) { - $open311_only.hide(); - } else { - $open311_only.slideUp(); - } + $open311_only.slideUp(); } } + } + + if ($open311_only) { $('#send_method').on('change', hide_or_show_open311); hide_or_show_open311(true); } @@ -51,7 +53,7 @@ $(function(){ $cols.show(); $(this).prop("value", 'Hide deleted contacts'); } - }) + }); } }); -- cgit v1.2.3 From 125d511f3992ddc889bf73c24dde019e05c3433d Mon Sep 17 00:00:00 2001 From: Dave Whiteland Date: Thu, 15 Aug 2013 13:24:57 +0100 Subject: fix deciding-to-hide contacts bug was counting rows and expecting them to be 1, when it should have been counting tables. --- web/js/fixmystreet-admin.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'web') diff --git a/web/js/fixmystreet-admin.js b/web/js/fixmystreet-admin.js index 64f73ebb7..76c02128c 100644 --- a/web/js/fixmystreet-admin.js +++ b/web/js/fixmystreet-admin.js @@ -38,9 +38,8 @@ $(function(){ }); // on a body's page, hide/show deleted contact categories - var $table_with_deleted_contacts = $('table tr.is-deleted td.contact-category'); + var $table_with_deleted_contacts = $('table tr.is-deleted td.contact-category').closest('table'); if ($table_with_deleted_contacts.length == 1) { - $table_with_deleted_contacts = $table_with_deleted_contacts.closest('table'); var $toggle_deleted_btn = $(""); $table_with_deleted_contacts.before($toggle_deleted_btn); $toggle_deleted_btn.on('click', function(e){ -- cgit v1.2.3 From 04b187d5347dd2d26874a83902e51c2532ef8a2f Mon Sep 17 00:00:00 2001 From: Dave Whiteland Date: Fri, 6 Sep 2013 10:56:49 +0100 Subject: add show-admin-notes class to body making the admin-notes functionality easier to suppress on installations that don't want it; it's in the default header, i.e., on for new installations --- web/cobrands/sass/_layout.scss | 21 +++++++++++++------ web/js/fixmystreet-admin.js | 46 ++++++++++++++++++++++-------------------- 2 files changed, 39 insertions(+), 28 deletions(-) (limited to 'web') diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index 4d32f6062..126e44685 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -1039,6 +1039,19 @@ $button_bg_col: #a1a1a1; // also search bar (tables) } } } + .no-bullets { + margin-left: 0; + > li { + list-style: none; + } + } + .fms-admin-warning, .fms-admin-info, .admin-hint { + display: none; // don't display admin-notes unless .show-admin-notes class is present + } + &.show-admin-notes { + .fms-admin-warning, .fms-admin-info, .admin-hint { + display: block; + } .fms-admin-warning, .fms-admin-info { padding: 1em; font-size: 90%; @@ -1101,14 +1114,10 @@ $button_bg_col: #a1a1a1; // also search bar (tables) } } } - .no-bullets { - margin-left: 0; - > li { - list-style: none; - } - } + } } + /* MEDIA QUERIES */ @media only screen and (min-width: 48em) and (max-width: 61em) { .container { diff --git a/web/js/fixmystreet-admin.js b/web/js/fixmystreet-admin.js index 76c02128c..1aabf8349 100644 --- a/web/js/fixmystreet-admin.js +++ b/web/js/fixmystreet-admin.js @@ -28,32 +28,34 @@ $(function(){ hide_or_show_open311(true); } - // admin hints: maybe better implemented as tooltips? - $(".admin-hint").on('click', function(){ - if ($(this).hasClass('admin-hint-show')) { - $(this).removeClass('admin-hint-show'); - } else { - $(this).addClass('admin-hint-show'); - } - }); + if ($('body').hasClass("show-admin-notes")) { - // on a body's page, hide/show deleted contact categories - var $table_with_deleted_contacts = $('table tr.is-deleted td.contact-category').closest('table'); - if ($table_with_deleted_contacts.length == 1) { - var $toggle_deleted_btn = $(""); - $table_with_deleted_contacts.before($toggle_deleted_btn); - $toggle_deleted_btn.on('click', function(e){ - e.preventDefault(); - var $cols = $table_with_deleted_contacts.find('tr.is-deleted'); - if ($cols.first().is(':visible')) { - $cols.hide(); - $(this).prop("value", 'Show deleted contacts'); + // admin hints: maybe better implemented as tooltips? + $(".admin-hint").on('click', function(){ + if ($(this).hasClass('admin-hint-show')) { + $(this).removeClass('admin-hint-show'); } else { - $cols.show(); - $(this).prop("value", 'Hide deleted contacts'); + $(this).addClass('admin-hint-show'); } }); - } + // on a body's page, hide/show deleted contact categories + var $table_with_deleted_contacts = $('table tr.is-deleted td.contact-category').closest('table'); + if ($table_with_deleted_contacts.length == 1) { + var $toggle_deleted_btn = $(""); + $table_with_deleted_contacts.before($toggle_deleted_btn); + $toggle_deleted_btn.on('click', function(e){ + e.preventDefault(); + var $cols = $table_with_deleted_contacts.find('tr.is-deleted'); + if ($cols.first().is(':visible')) { + $cols.hide(); + $(this).prop("value", 'Show deleted contacts'); + } else { + $cols.show(); + $(this).prop("value", 'Hide deleted contacts'); + } + }); + } + } }); -- cgit v1.2.3 From 10b8a68e9b2e3dadba7142a70022b4a636e644ad Mon Sep 17 00:00:00 2001 From: Chris Mytton Date: Wed, 11 Sep 2013 10:45:06 +0100 Subject: [Zurich] Add .muted class for deleted bodies --- web/cobrands/zurich/_zurich.scss | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'web') diff --git a/web/cobrands/zurich/_zurich.scss b/web/cobrands/zurich/_zurich.scss index c9eb7a080..f9ea29d9a 100644 --- a/web/cobrands/zurich/_zurich.scss +++ b/web/cobrands/zurich/_zurich.scss @@ -35,3 +35,7 @@ body.frontpage #zurich-footer-wrapper { #zurich-footer a:hover { color: #3c3c3c; } + +.muted, .muted a { + color: #aaa; +} -- cgit v1.2.3