diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-10-20 12:42:45 -0700 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-10-20 12:42:45 -0700 |
commit | c93328bddf3bd6c3d4718ee7aacddbe0b378e988 (patch) | |
tree | af45b6cc710840a5c06ed1c2130f20c88abd5b65 /core | |
parent | 2747862b139d5b321f1241502b027f4657d1253d (diff) | |
parent | fbd0076be0f92a72c602c70c8fc2ad08e65dae5d (diff) | |
download | nextcloud-server-c93328bddf3bd6c3d4718ee7aacddbe0b378e988.tar.gz nextcloud-server-c93328bddf3bd6c3d4718ee7aacddbe0b378e988.zip |
Merge pull request #5433 from owncloud/inputs-seem-disabled
input field background size to white, fix input fields seeming disabled,...
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index cb380bdcfbc..62ee0e56cae 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -58,7 +58,9 @@ button, .button, } input[type="hidden"] { height:0; width:0; } input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], input[type="url"], textarea { - background:#f8f8f8; color:#555; cursor:text; + background: #fff; + color: #555; + cursor: text; font-family: inherit; /* use default ownCloud font instead of default textarea monospace */ } input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], input[type="url"] { @@ -72,7 +74,7 @@ input[type="number"]:hover, input[type="number"]:focus, input[type="number"]:act input[type="email"]:hover, input[type="email"]:focus, input[type="email"]:active, input[type="url"]:hover, input[type="url"]:focus, input[type="url"]:active, textarea:hover, textarea:focus, textarea:active { - background-color:#fff; color:#333; + color: #333; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } input[type="checkbox"] { margin:0; padding:0; height:auto; width:auto; } |