diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-09-10 18:09:22 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-09-10 18:09:22 +0200 |
commit | 8d0d336e038de256f86135d64c82155d85cbad6f (patch) | |
tree | eb6cc25c3d1ddbace73d80d5d92cf7a6a8fe41ea | |
parent | a064536ec13c8effb5e97b152e1949bc6dab6612 (diff) | |
download | nextcloud-server-8d0d336e038de256f86135d64c82155d85cbad6f.tar.gz nextcloud-server-8d0d336e038de256f86135d64c82155d85cbad6f.zip |
fit select2 to ownCloud input style
-rw-r--r-- | core/css/styles.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 64b37c89b0b..952e935ec46 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -139,6 +139,18 @@ input[type="time"] { -moz-box-sizing: border-box; box-sizing: border-box; } +.select2-choices { + border: 1px solid #ddd; + border-radius: 3px; + color: #333; + background-image: none; +} +.select2-dropdown-open .select2-choices { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + border: 1px solid #3875d7; +} + /* correctly align images inside of buttons */ input img, button img, .button img { vertical-align: text-bottom; |