diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2017-05-15 12:49:36 +0100 |
---|---|---|
committer | Zarino Zappia <mail@zarino.co.uk> | 2017-05-15 14:39:25 +0100 |
commit | 92ee5783c19ed9a98696c2e87fcbd2f1f1eb39cc (patch) | |
tree | c177d5b05edca0eda45a7d33756e58ce90583aa4 /web | |
parent | f2cd1e6b05eaeb6f88716c3c5988ffe3ebf1296f (diff) |
Harmonize #key-tools link and input styling
Default button styling was seeping through to the "Remove from site"
key-tools item, causing inconsistency with the other items.
Overrides a bunch of the default button styles seeping through to the
"Remove from site" button, so that it behaves the same as the items
(normal link elements) in #key-tools.
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/sass/_base.scss | 8 | ||||
-rw-r--r-- | web/cobrands/sass/_layout.scss | 1 |
2 files changed, 7 insertions, 2 deletions
diff --git a/web/cobrands/sass/_base.scss b/web/cobrands/sass/_base.scss index f7e67bdc2..c89ddf342 100644 --- a/web/cobrands/sass/_base.scss +++ b/web/cobrands/sass/_base.scss @@ -600,17 +600,21 @@ body.mappage .wrapper { display: block; background-color: #f5f5f5; background-repeat: no-repeat; - color:#333; + color: #333 !important; padding:4em 2em 1em; text-transform:uppercase; font: { size:0.6875em; family: $meta-font; + weight: normal; } + line-height: 1.2em; + white-space: normal; + border-radius: 0; &:hover, &.hover { text-decoration:none; background-color:#333; - color:#fff; + color: #fff !important; } &.abuse { background-image: url($image-sprite); diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index 7e56d31bd..7e022530c 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -776,6 +776,7 @@ body.authpage { border:none; a, input[type=submit] { font-size: 0.75em; + line-height: 18px; // match `body` color:#666; padding: flip(0.5em 1.5em 0.5em 0, 0.5em 0 0.5em 1.5em); text-transform:none; |