summaryrefslogtreecommitdiff
path: root/chimere/static/bsmSelect/css/jquery.bsmselect.css
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2013-03-14 18:48:00 +0100
committerÉtienne Loks <etienne.loks@peacefrogs.net>2013-03-14 18:48:00 +0100
commit054fdbdf7a1e5106725b8b5a36db99242cfa65c1 (patch)
tree1633b26e884feb1f29afedbb80cef7a6ecbdba2d /chimere/static/bsmSelect/css/jquery.bsmselect.css
parent8a5ba2650678ec22107a1a0a10650b6e0cc14683 (diff)
parentd02ec4246813eb0787bf3ab54af1af9ce32bd376 (diff)
downloadChimère-054fdbdf7a1e5106725b8b5a36db99242cfa65c1.tar.bz2
Chimère-054fdbdf7a1e5106725b8b5a36db99242cfa65c1.zip
Merge branch 'master' into saclay
Conflicts: chimere/locale/fr/LC_MESSAGES/django.po chimere/static/chimere/css/styles.css chimere/static/chimere/js/jquery.chimere.js chimere/templates/chimere/detail.html chimere/templatetags/chimere_tags.py chimere/utils.py chimere/views.py example_project/settings.py
Diffstat (limited to 'chimere/static/bsmSelect/css/jquery.bsmselect.css')
-rw-r--r--chimere/static/bsmSelect/css/jquery.bsmselect.css64
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;
+}