diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/fixmystreet.com/layout.scss | 20 | ||||
-rw-r--r-- | web/cobrands/sass/_dropzone.scss | 6 |
2 files changed, 21 insertions, 5 deletions
diff --git a/web/cobrands/fixmystreet.com/layout.scss b/web/cobrands/fixmystreet.com/layout.scss index 985f16ca8..81c3b3d54 100644 --- a/web/cobrands/fixmystreet.com/layout.scss +++ b/web/cobrands/fixmystreet.com/layout.scss @@ -383,11 +383,13 @@ body.unresponsive-council { background: transparent; } - #main-nav { - text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4); + .nav-menu a, + .nav-menu span { + color: #222; } .nav-menu--main { + font-weight: bold; span { color: inherit; } @@ -403,7 +405,6 @@ body.unresponsive-council { background-color: #fff; color: mix(#fad52a, #000, 50%); padding: 0.25em 0.5em; - text-shadow: none; } } @@ -416,10 +417,19 @@ body.unresponsive-council { background: darken(#fad52a, 5%); } - body.twothirdswidthpage .container .content footer .tablewrapper, + body.twothirdswidthpage .container .content footer .tablewrapper { + color: #222; + background: #fad52a; + } body.fullwidthpage .container .content footer .tablewrapper, #footer-nav .tablewrapper { - background: #fad52a; + color: #222; + background: transparent; + } + + #footer-nav .tablewrapper ul li a, + #footer-nav .tablewrapper ul li span { + color: #222; } .nav-menu--mysoc { diff --git a/web/cobrands/sass/_dropzone.scss b/web/cobrands/sass/_dropzone.scss index 90e53584d..8c482d0cf 100644 --- a/web/cobrands/sass/_dropzone.scss +++ b/web/cobrands/sass/_dropzone.scss @@ -120,6 +120,11 @@ $dropzone-background-color--full: mix($dropzone-border-color--full, $dropzone-ba } } +// If there was an error, we don't want to display the preview image on top of it. +.dz-error .dz-image { + display: none; +} + .dz-progress { position: absolute; top: 0; @@ -148,6 +153,7 @@ $dropzone-background-color--full: mix($dropzone-border-color--full, $dropzone-ba .dz-error-message { color: #881111; + padding-top: 1.5em; } .dz-remove, |