-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakeForm.select.css
More file actions
83 lines (82 loc) · 1.84 KB
/
Copy pathmakeForm.select.css
File metadata and controls
83 lines (82 loc) · 1.84 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
.mfContainer {
/* This is the container */
height: 34px;
display: inline-block;
position: relative;
margin: 5px;
/* Font settings */
font-size: 11px;
font-family: arial;
font-weight: bold;
color: #FFFFFF;
}
.mfContainer .selectBox {
height: 36px;
line-height: 36px;
width: 150px;
margin: 0px;
/* Font settings */
text-align: center;
color: #FFFFFF;
background: url("img/down-arrow.png") no-repeat 125px center #444;
cursor: pointer;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.mfContainer .selectBox:hover, .mfContainer .selectBox.expanded {
/* Modify, if needed */
background: url("img/down-arrow.png") no-repeat 125px center #444;
}
.mfContainer .dropDownForm {
background: url("img/fancy_deboss.png") repeat scroll 0 0 #FFFFFF;
border: 1px solid #32333B;
box-shadow: 0 0 4px #111111;
left: 0;
min-width: 204px;
padding: 10px;
position: absolute;
top: 38px;
width: 100%;
}
.mfContainer li {
background: url("img/bar.png") no-repeat scroll 0 0 transparent;
color: #FFFFFF;
cursor: pointer;
height: 36px;
list-style: none outside none;
line-height: 36px;
padding-left: 6px;
}
.mfContainer li:hover {
background: url("img/active-bar.png") no-repeat scroll 0 0 transparent;
}
.mfContainer li.selected {
background: #444444;
}
.mfContainer .dropDownForm .comment {
border: 1px solid #999999;
margin-bottom: 10px;
height: 58px;
width: 202px;
}
ul.dropDown {
margin: 0 0 10px 0;
padding: 0px;
}
.submitStatus {
background: url("img/bar.png") no-repeat scroll 0 0 #888888;
border: medium none;
border-radius: 11px 11px 11px 11px;
color: #FFFFFF;
font-family: arial;
font-size: 11px;
font-weight: bolder;
height: 23px;
width: 128px;
}
.submitStatus:hover{
background: none repeat scroll 0 0 #444444;
color: #FFFFFF;
cursor: pointer;
}