diff options
author | Byron Jones <glob@mozilla.com> | 2015-07-27 06:13:26 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-07-27 06:13:26 +0200 |
commit | 5b27f640afa7ff9a6804949ad16667d988f7f5d4 (patch) | |
tree | 4da5c3f69dc6b026b8d8805542b717485d84149e /skins | |
parent | 92f16f758434dd1ce92a1043ade9bf7f8438fa78 (diff) | |
download | bugzilla-5b27f640afa7ff9a6804949ad16667d988f7f5d4.tar.gz bugzilla-5b27f640afa7ff9a6804949ad16667d988f7f5d4.tar.xz |
Bug 1171806 - add the ability for a user to disable/"remove" their own account
Diffstat (limited to 'skins')
-rw-r--r-- | skins/standard/admin.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/skins/standard/admin.css b/skins/standard/admin.css index c5816a549..4c3af2255 100644 --- a/skins/standard/admin.css +++ b/skins/standard/admin.css @@ -160,3 +160,22 @@ th.title { .report_information { font-style: italic; } + +#account-disable-button { + background-color: #a91300; + background-image: linear-gradient(#da5132, #a91300); + color: #fff; +} + +#account-disable-button:hover { + color: #fff; + -webkit-box-shadow: 0 1px 0 0 rgba(0,0,0,0.2),inset 0 -1px 0 0 rgba(0,0,0,0.3),inset 0 12px 24px 2px #e64926; + -moz-box-shadow: 0 1px 0 0 rgba(0,0,0,0.2),inset 0 -1px 0 0 rgba(0,0,0,0.3),inset 0 12px 24px 2px #e64926; + box-shadow: 0 1px 0 0 rgba(0,0,0,0.2),inset 0 -1px 0 0 rgba(0,0,0,0.3),inset 0 12px 24px 2px #e64926; +} + +#account-disable-button[disabled] { + opacity: 0.2; + cursor: default; +} + |