diff options
Diffstat (limited to 'angular-multi-select.css')
-rw-r--r-- | angular-multi-select.css | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/angular-multi-select.css b/angular-multi-select.css index 6ee29fc..88919ba 100644 --- a/angular-multi-select.css +++ b/angular-multi-select.css @@ -11,18 +11,18 @@ margin:0 auto; text-align: center; cursor: pointer; - background-image: none; border: 1px solid #999; padding: 6px 12px; font-size: 14px; line-height: 1.4; - border-radius: 2px; + border-radius: 3px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none; - color: #666; + color: #333; + background-color: #fff; } .multiSelect .helperButton { @@ -138,3 +138,8 @@ label.multiSelect span:hover{ cursor: not-allowed; } +.multiSelect.disabled:hover { + cursor: not-allowed; + color: #999; +} + |