diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-04-17 16:30:42 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-04-22 16:16:52 +0200 |
commit | 969bcb3ced7ab7b9fcca136b2f736681bfc5181b (patch) | |
tree | d81e43d34904fed8c2c383d2f27b5ecd7006d671 /core/css | |
parent | 1d255ebf704769f94885928778aeb58758e74a42 (diff) | |
download | nextcloud-server-969bcb3ced7ab7b9fcca136b2f736681bfc5181b.tar.gz nextcloud-server-969bcb3ced7ab7b9fcca136b2f736681bfc5181b.zip |
make textarea inherit ownCloud font instead of using monospace
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index ff46b694916..563bd7d6ea4 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -48,6 +48,7 @@ textarea, select, button, .button, #quota, div.jp-progress, .pager li a { input[type="hidden"] { height:0; width:0; } input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], textarea { background:#f8f8f8; 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"] { -webkit-appearance:textfield; -moz-appearance:textfield; |