summaryrefslogtreecommitdiffstats
path: root/core/css
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-10-20 21:22:41 +0300
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-10-20 21:22:41 +0300
commitfa66dfff8074d1e1e2c5251961c1c5b57859c3e8 (patch)
treefd3f35a97fa771511104a419cdefcdb9291bec5c /core/css
parent2747862b139d5b321f1241502b027f4657d1253d (diff)
downloadnextcloud-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.css4
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"] {