diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-02-19 11:09:26 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-02-19 11:09:26 +0100 |
| commit | d2f705ef0d03a7ace25c78152bf5d7a3d85fa914 (patch) | |
| tree | d780d992b0937ba1b010332c8e623c54cdfbbae1 /chimere/static/bsmSelect/css/jquery.bsmselect.css | |
| parent | dce6d0499efe505096495b36728eeb8c9fb8ced1 (diff) | |
| parent | 4a5f51d26982fe04eae01ee6ca0bbdb8b3153173 (diff) | |
| download | Chimère-d2f705ef0d03a7ace25c78152bf5d7a3d85fa914.tar.bz2 Chimère-d2f705ef0d03a7ace25c78152bf5d7a3d85fa914.zip | |
Merge branch 'master' of ssh://etienne@daenerys.peacefrogs.net/var/local/git/chimere
Diffstat (limited to 'chimere/static/bsmSelect/css/jquery.bsmselect.css')
| -rw-r--r-- | chimere/static/bsmSelect/css/jquery.bsmselect.css | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/chimere/static/bsmSelect/css/jquery.bsmselect.css b/chimere/static/bsmSelect/css/jquery.bsmselect.css new file mode 100644 index 0000000..ad770d0 --- /dev/null +++ b/chimere/static/bsmSelect/css/jquery.bsmselect.css @@ -0,0 +1,64 @@ +.bsmContainer { + /* container that surrounds entire bsmSelect widget */ +} + +.bsmSelect { + /* the newly created regular 'select' */ + display: inline; +} + +.bsmOptionDisabled { + /* disabled options in new select */ + color: #999; +} + +.bsmHighlight { + /* the highlight span */ + float: right; + padding: 0; + margin: 0 0 0 1em; +} + +.bsmList { + /* html list that contains selected items */ + margin: 0.25em 0 1em 0; + position: relative; + display: block; + padding-left: 0; + list-style: none; +} + +.bsmListItem { + /* li item from the html list above */ + position: relative; + margin-left: 0; + padding-left: 0; + list-style: none; + background: #ddd; + border: 1px solid #bbb; + width: 100%; + margin: 0 0 -1px 0; + line-height: 1em; +} + +.bsmListItem:hover { + background-color: #e5e5e5; +} + +.bsmListItemLabel { + /* this is a span that surrounds the text in the item, except for the remove link */ + padding: 5px; + display: block; +} + +.bsmListSortable .bsmListItemLabel { + cursor: move; +} + +.bsmListItemRemove { + /* the remove link in each list item */ + position: absolute; + right: 0; + top: 0; + padding: 5px; +} |
