-
Notifications
You must be signed in to change notification settings - Fork 0
/
sampleStyles.css
56 lines (56 loc) · 1.3 KB
/
sampleStyles.css
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
/****************************************************************
Sample styles for replaceDropdown
****************************************************************/
select {
margin: 10px 0 5px;
width: 200px;
}
.ddlist {
position: relative;
z-index: 99;
}
.ddlist > a {
background: url("http://www.johnfrieda.com/en-US/ProductAdvisor/images/dropdownArrows.gif") no-repeat scroll 200px 0 rgba(61, 61, 61, 0.5);
border: 1px solid #171717;
color: #FFFFFF;
display: block;
font: bold 12px/1 arial,helvetica,sans-serif;
height: 18px;
margin: 0;
padding: 4px 0 0 15px;
text-align: left;
text-decoration: none;
text-transform: capitalize;
width: 200px;
}
.ddlist a.open {
background-position: 200px -23px;
}
.ddlist ul {
background: none repeat scroll 0 0 #C8C8C8;
border: 1px solid #171717;
color: #171717;
display: none;
left: 0;
position: absolute;
top: 23px;
width: 215px;
z-index: 999;
}
.ddlist ul.openTop {
bottom: 23px;
top: auto;
}
.ddlist ul li a {
color: #000000;
display: block;
font: bold 12px/1 arial,helvetica,sans-serif;
letter-spacing: normal;
padding: 4px 15px;
text-decoration: none;
white-space: nowrap;
}
.ddlist ul li a:hover {
color: #FFFFFF;
background: #adadad;
}