diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-11-17 18:18:38 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-11-17 18:18:38 +0100 |
commit | 978c02e7a848d066e26a05861505d763de15a867 (patch) | |
tree | 60443ecc041c807df9960415fff9c72555389320 /core/css | |
parent | da4f68b80a8225772c59262c3b2ca104be7fe13f (diff) | |
download | nextcloud-server-978c02e7a848d066e26a05861505d763de15a867.tar.gz nextcloud-server-978c02e7a848d066e26a05861505d763de15a867.zip |
select2: show cursor pointer on hovering entries
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/inputs.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/css/inputs.css b/core/css/inputs.css index 75b9b34bf85..4497c00139f 100644 --- a/core/css/inputs.css +++ b/core/css/inputs.css @@ -264,6 +264,9 @@ select:hover { overflow: hidden; text-overflow: ellipsis; } +.select2-results .select2-result-label span { + cursor: pointer; +} .select2-choices { white-space: nowrap !important; @@ -329,6 +332,12 @@ select:hover { margin-right: 8px; vertical-align: middle; } +#select2-drop .avatar img, +.select2-chosen .avatar img, +#select2-drop .avatar, +.select2-chosen .avatar { + cursor: pointer; +} .select2-results .select2-no-results, .select2-results .select2-searching, |