blob: 8c48aeb14077254e7399402146315a7ca9ba6a4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
.bsmListSortableCustom li {
cursor: move;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
margin: 2px 0;
}
.bsmList-custom {
/* html list that contains selected items */
margin: 0.25em 0 0.25em 0;
display: block;
padding-left: 0;
list-style: none;
}
.bsmListItem-custom {
/* li item from the html list above */
margin: 0 5px 5px 0;
padding: 4px;
list-style: none;
background: #ddd;
border: 1px solid #bbb;
line-height: 1em;
float: left;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
.bsmListItem-custom:hover {
background-color: #e5e5e5;
box-shadow: 0 0 3px #aaa;
-webkit-box-shadow: 0 0 3px #aaa;
-moz-box-shadow: 0 0 3px #aaa;
}
.bsmListItemLabel-custom {
padding-right: 5px;
}
.bsmListItemRemove-custom {
text-decoration: none;
}
|