diff options
author | lou <louiscuny@gmail.com> | 2012-04-11 10:27:29 +0200 |
---|---|---|
committer | lou <louiscuny@gmail.com> | 2012-04-11 10:27:29 +0200 |
commit | 11de6abb21094d1a5b571f0c22990fd531f7153c (patch) | |
tree | 4bb79caaa2950ac3ceb753ae698f0889281c444a /css | |
parent | 54d1b893a8223525a55e030e1fdcfae98848e62f (diff) | |
download | multi-select-11de6abb21094d1a5b571f0c22990fd531f7153c.zip multi-select-11de6abb21094d1a5b571f0c22990fd531f7153c.tar.gz multi-select-11de6abb21094d1a5b571f0c22990fd531f7153c.tar.bz2 |
first pass on keyboard
Diffstat (limited to 'css')
-rw-r--r-- | css/multi-select.css | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/css/multi-select.css b/css/multi-select.css index f9d1359..e3e2b78 100644 --- a/css/multi-select.css +++ b/css/multi-select.css @@ -23,6 +23,14 @@ margin-right: 40px; } +.ms-container .ms-selectable.ms-focused{ + box-shadow: 0px 0px 1px 2px #649DDC; +} + +.ms-container .ms-selection.ms-focused{ + box-shadow: 0px 0px 1px 2px #649DDC; +} + .ms-container ul{ margin: 0; list-style-type: none; @@ -66,13 +74,13 @@ background-image: url('../img/minus.png'); } -.ms-container li.ms-elem-selectable:not(.disabled):hover, -.ms-container .ms-selection li:not(.disabled):hover{ +.ms-container li.ms-elem-selectable:not(.disabled).ms-hover, +.ms-container .ms-selection li:not(.disabled).ms-hover{ cursor: pointer; background-color: #eee; color: #000; } -.ms-container .ms-selection li:not(.disabled):hover{ +.ms-container .ms-selection li:not(.disabled).ms-hover{ background: #eee url('../img/delete.png') no-repeat 3px 3px; }
\ No newline at end of file |