diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2016-04-01 15:36:49 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-06-01 12:46:06 +0100 |
commit | 7f135798a6523ba7e7e0125007550abc9cc6916c (patch) | |
tree | 3bbd5836dc16bdd20236b4369fb8cfeed62ded9d /web/cobrands/sass/_layout.scss | |
parent | 5500db6a5c5868c7f38254a09b171ca819ccfd93 (diff) |
Stop PanZoom giving controls hard-coded positions.
We previously used !important to override them in the CSS, but better to
prevent them being set in the JavaScript in the first place.
Diffstat (limited to 'web/cobrands/sass/_layout.scss')
-rw-r--r-- | web/cobrands/sass/_layout.scss | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index 2f601775b..cdb15e691 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -624,14 +624,14 @@ body.authpage { // push zoom back over to right #fms_pan_zoom_zoomin { - #{$left}: auto !important; - #{$right}: 30px !important; - top:130px !important; + #{$left}: auto; + #{$right}: 30px; + top: 130px; } #fms_pan_zoom_zoomout { - #{$left}: auto !important; - #{$right}: 30px !important; - top:174px !important; + #{$left}: auto; + #{$right}: 30px; + top: 174px; } .olControlAttribution { |