diff options
Diffstat (limited to 'angular-multi-select.css')
-rw-r--r-- | angular-multi-select.css | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/angular-multi-select.css b/angular-multi-select.css index 7895301..9f4c564 100644 --- a/angular-multi-select.css +++ b/angular-multi-select.css @@ -74,7 +74,7 @@ border-top: 4px solid #333; border-right: 4px solid transparent; border-left: 4px solid transparent; - border-bottom: 0 dotted; + border-bottom: 0 dotted; } .multiSelect.multiSelectItem { @@ -110,11 +110,6 @@ label.multiSelect span { user-select: none; } -label.multiSelect span:hover{ - cursor: pointer; - color: #333; -} - /* hide the checkbox away */ .multiSelect .checkbox { position: absolute; @@ -138,6 +133,22 @@ label.multiSelect span:hover{ margin-left: 1px; } +/* On mouse over and focus */ +label.multiSelect input:focus ~ span::after, +label.multiSelect span:focus::after, +label.multiSelect span:hover::after { + /* Enable this if you want some arrow pointer */ + /* content: ' \00AB'; */ +} + +label.multiSelect input:focus ~ span, +label.multiSelect span:hover { + color: #333; + cursor: pointer; + /* Enable this if you want some arrow pointer */ + /* content: ' \00AB'; */ +} + /* for checkboxes currently selected */ .multiSelect .checkboxSelected { color: #000; |