diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-10-20 21:22:41 +0300 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-10-20 21:22:41 +0300 |
commit | fa66dfff8074d1e1e2c5251961c1c5b57859c3e8 (patch) | |
tree | fd3f35a97fa771511104a419cdefcdb9291bec5c /core/css | |
parent | 2747862b139d5b321f1241502b027f4657d1253d (diff) | |
download | nextcloud-server-fa66dfff8074d1e1e2c5251961c1c5b57859c3e8.tar.gz nextcloud-server-fa66dfff8074d1e1e2c5251961c1c5b57859c3e8.zip |
input field background size to white, fix input fields seeming disabled, fix #5168
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index cb380bdcfbc..4716ce8d9b5 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"] { |