diff options
author | Matthew Somerville <matthew@mysociety.org> | 2014-11-19 18:47:40 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2014-11-19 18:48:17 +0000 |
commit | ea829cf5596513bbeb6868f652ae11324439ee82 (patch) | |
tree | bf86000a554fec249f294b2d5d4b421e320f5b4e | |
parent | edbcff496f7c7cfc4034447da2d20d9072f636a9 (diff) |
[Zurich] Move admin table CSS to base stylesheet.v1.5
To match shift of styles in bb07940.
-rw-r--r-- | web/cobrands/zurich/base.scss | 47 | ||||
-rw-r--r-- | web/cobrands/zurich/layout.scss | 48 |
2 files changed, 47 insertions, 48 deletions
diff --git a/web/cobrands/zurich/base.scss b/web/cobrands/zurich/base.scss index 27aab1d63..cdbdcbfbd 100644 --- a/web/cobrands/zurich/base.scss +++ b/web/cobrands/zurich/base.scss @@ -137,3 +137,50 @@ h4.static-with-rule { #fms_pan_zoom_panright { display: none; } + +.admin-nav { + background: #f4f4f4; + @include background(linear-gradient(#fbfbfb, #efefef)); + border-bottom: 2px solid $table_border_color; + ul { + overflow:auto; + margin:0 0 -2px 0; + list-style: none; + padding: 0; + border-top: 1px solid $table_border_color; + border-left: 1px solid $table_border_color; + border-right: 1px solid $table_border_color; + li { + border-right: 1px solid $table_border_color; + float:left; + list-style: none; + margin:0; + padding: 0.5em 1em; + font-weight: bold; + color: #000; + a { + color: #000; + } + } + li.search-box { + float: right; + } + li.current { + background-color: #fff; + border-bottom: 2px solid #fff; + } + li.search-box { + border:none; + padding: 0.2em 0.5em 0.2em 30px; + background-image: url('search-icon.png'); + background-position: 2px center; + background-repeat: no-repeat; + input { + height: 100%; + width: 12em; + border: none; + padding: 6px 0.5em; + } + } + } +} diff --git a/web/cobrands/zurich/layout.scss b/web/cobrands/zurich/layout.scss index 085e6e84c..39bbb20b4 100644 --- a/web/cobrands/zurich/layout.scss +++ b/web/cobrands/zurich/layout.scss @@ -289,51 +289,3 @@ body.mappage .admin-nav-wrapper { width: 100%; @include box-shadow(0 0 6px 1px #000); } - -.admin-nav { - background: #f4f4f4; - @include background(linear-gradient(#fbfbfb, #efefef)); - border-bottom: 2px solid $table_border_color; - ul { - overflow:auto; - margin:0 0 -2px 0; - list-style: none; - padding: 0; - border-top: 1px solid $table_border_color; - border-left: 1px solid $table_border_color; - border-right: 1px solid $table_border_color; - li { - border-right: 1px solid $table_border_color; - float:left; - list-style: none; - margin:0; - padding: 0.5em 1em; - font-weight: bold; - color: #000; - a { - color: #000; - } - } - li.search-box { - float: right; - } - li.current { - background-color: #fff; - border-bottom: 2px solid #fff; - } - li.search-box { - border:none; - padding: 0.2em 0.5em 0.2em 30px; - background-image: url('search-icon.png'); - background-position: 2px center; - background-repeat: no-repeat; - input { - height: 100%; - width: 12em; - border: none; - padding: 6px 0.5em; - } - } - } -} - |