diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-04-12 19:18:11 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-04-12 19:18:11 +0200 |
commit | c9c83c618575efe13b3bcc0376174a74b5d8b582 (patch) | |
tree | cf0f931aff54ab816bde8b44b3133d8fc15904fc /core/css | |
parent | f9e7d4ce2525cc4a101e36ae4aec41aabd69a902 (diff) | |
download | nextcloud-server-c9c83c618575efe13b3bcc0376174a74b5d8b582.tar.gz nextcloud-server-c9c83c618575efe13b3bcc0376174a74b5d8b582.zip |
add .disabled class so it can be used for simple a buttons as well
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 823e5af08a4..47973a5f2a2 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -98,7 +98,8 @@ input[type="submit"] img, input[type="button"] img, button img, .button img { cu /* disabled input fields and buttons */ input:disabled, input:disabled:hover, input:disabled:focus, button:disabled, button:disabled:hover, button:disabled:focus, -.button:disabled, .button:disabled:hover, .button:disabled:focus { +.button:disabled, .button:disabled:hover, .button:disabled:focus, +a.disabled, a.disabled:hover, a.disabled:focus { background: rgba(230,230,230,.9); color: #999; cursor: default; |