Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-04-03 20:45:03 +0400
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-04-12 21:14:09 +0400
commit0ff7aa44362f8ee8351cd1ac045dbd9f9164453c (patch)
treecbf32a2b86075e25619c7ce5d0c984c27b9ce9db /core
parent5e817584dbc42b5e019c7f6db4d0f057a049c297 (diff)
add styles for disabled input fields
Diffstat (limited to 'core')
-rw-r--r--core/css/styles.css9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index 755c8146c91..e935e2c101d 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -91,6 +91,15 @@ select:hover, select:focus, select:active {
input[type="submit"] img, input[type="button"] img, button img, .button img { cursor:pointer; }
#header .button { border:none; -moz-box-shadow:none; -webkit-box-shadow:none; box-shadow:none; }
+/* 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 {
+ background: rgba(230,230,230,.9);
+ color: #999;
+ cursor: default;
+}
+
/* Primary action button, use sparingly */
.primary, input[type="submit"].primary, input[type="button"].primary, button.primary, .button.primary {
border:1px solid #1d2d44;