diff options
author | Raghu Nayyar <hey@raghunayyar.com> | 2015-08-30 17:43:09 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-09-03 00:28:08 +0200 |
commit | 59cf11c61256157cf41f8e17e4d7b0937f4d3734 (patch) | |
tree | 09fbd9a54c1f7537e4ccb08a2d9e2cab9d9c22d1 /core | |
parent | 045f8cc97101521cafd664faf7b8f24ea9e88451 (diff) | |
download | nextcloud-server-59cf11c61256157cf41f8e17e4d7b0937f4d3734.tar.gz nextcloud-server-59cf11c61256157cf41f8e17e4d7b0937f4d3734.zip |
Makes settings select like multiselect
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index da4dc8b4d4d..f3fc478aee1 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -12,7 +12,17 @@ table, td, th { vertical-align:middle; } a { border:0; color:#000; text-decoration:none;} a, a *, input, input *, select, .button span, label { cursor:pointer; } ul { list-style:none; } +select { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background: url('../../core/img/actions/triangle-s.svg') no-repeat right 8px center rgba(240, 240, 240, 0.90); + outline: 0; +} +select:hover { + background-color: #fefefe; +} body { background-color: #ffffff; |