PluginProbe
Database Reset / 3.19
Database Reset v3.19
2.3.2 3.0 3.0.1 3.0.2 3.1 3.15 3.16 3.17 3.18 3.19 3.20 3.21 3.22 3.23 3.24 3.25 trunk 1.0 1.2 1.2.1 1.2.2 1.3 1.4 2.0 2.1 All 27 releases
wordpress-database-reset / assets / css / bsmselect.css

bsmselect.css in Database Reset 3.19, at assets/css/bsmselect.css

77 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .bsmContainer {
2 /* container that surrounds entire bsmSelect widget */
3 color: #555;
4 }
5
6 .bsmSelect {
7 /* the newly created regular 'select' */
8 display: inline;
9 }
10
11 .bsmOptionDisabled {
12 /* disabled options in new select */
13 color: #999;
14 }
15
16 .bsmHighlight {
17 /* the highlight span */
18 float: right;
19 padding: 0;
20 margin: 0 0 0 1em;
21 }
22
23 .bsmList {
24 /* html list that contains selected items */
25 border-color: #DFDFDF;
26 margin: 0.25em 0 1.5em 0;
27 position: relative;
28 display: block;
29 padding-left: 0;
30 list-style: none;
31 width: 287px;
32 }
33
34 .bsmListItem {
35 /* li item from the html list above */
36 position: relative;
37 margin-left: 0;
38 padding-left: 0;
39 list-style: none;
40 background: #FCFCFC;
41 border: 1px solid #DFDFDF;
42 width: 100%;
43 margin: 0 0 -1px 0;
44 line-height: 1em;
45 }
46
47 .bsmListItem:hover {
48 background-color: #F0F0F0;
49 }
50
51 .bsmListItemLabel {
52 /* this is a span that surrounds the text in the item, except for the remove link */
53 padding: 5px;
54 display: block;
55 }
56
57 .bsmListSortable .bsmListItemLabel {
58 cursor: move;
59 }
60
61 .bsmListItemRemove {
62 /* the remove link in each list item */
63 text-decoration: none;
64 position: absolute;
65 right: 0;
66 top: 0;
67 padding: 5px;
68 }
69
70 .bsmListItemRemove:hover {
71 text-decoration: underline;
72 }
73
74 #bsmListbsmContainer0 {
75 margin-top: 12px;
76 }
77