1 |
efrain |
1 |
.yui3-skin-night .yui3-scrollview {
|
|
|
2 |
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
|
|
3 |
}
|
|
|
4 |
|
|
|
5 |
.yui3-skin-night .yui3-scrollview{
|
|
|
6 |
color:#fff;
|
|
|
7 |
background-color:#000;
|
|
|
8 |
}
|
|
|
9 |
|
|
|
10 |
.yui3-skin-night .yui3-scrollview-vert .yui3-scrollview-content {
|
|
|
11 |
/*border:1px solid #303030; If the ScrollView needs a border add it here */
|
|
|
12 |
border-top:0;
|
|
|
13 |
background-color:#000;
|
|
|
14 |
font-family: HelveticaNeue,arial,helvetica,clean,sans-serif;
|
|
|
15 |
color:#fff;
|
|
|
16 |
}
|
|
|
17 |
|
|
|
18 |
/* For IE 6/7 - needs a background color (above) to pick up events, and zoom, to fill the UL */
|
|
|
19 |
.yui3-skin-night .yui3-scrollview-vert .yui3-scrollview-content .yui3-scrollview-item {
|
|
|
20 |
*zoom:1;
|
|
|
21 |
}
|
|
|
22 |
|
|
|
23 |
/* For IE7 - needs zoom, otherwise clipped content is not rendered */
|
|
|
24 |
.yui3-skin-night .yui3-scrollview-vert .yui3-scrollview-content .yui3-scrollview-list {
|
|
|
25 |
*zoom:1;
|
|
|
26 |
list-style:none; /*need these since reset is not required*/
|
|
|
27 |
padding:0; /*need these since reset is not required*/
|
|
|
28 |
margin:0; /*need these since reset is not required*/
|
|
|
29 |
}
|
|
|
30 |
|
|
|
31 |
.yui3-skin-night .yui3-scrollview-vert .yui3-scrollview-content .yui3-scrollview-item {
|
|
|
32 |
border-bottom: 1px solid #303030;
|
|
|
33 |
padding: 15px 20px 16px;
|
|
|
34 |
font-size: 100%;
|
|
|
35 |
font-weight: bold;
|
|
|
36 |
background-color:#151515;
|
|
|
37 |
cursor:pointer;
|
|
|
38 |
}
|
|
|
39 |
|
|
|
40 |
.yui3-skin-night .yui3-scrollview-vert .yui3-scrollview-content .yui3-scrollview-list.selected{
|
|
|
41 |
background-color:#2C2D2E;
|
|
|
42 |
background: -moz-linear-gradient(
|
|
|
43 |
0% 100% 90deg,
|
|
|
44 |
#252626 0%,
|
|
|
45 |
#333434 100%
|
|
|
46 |
);
|
|
|
47 |
background: -webkit-gradient(
|
|
|
48 |
linear,
|
|
|
49 |
left top,
|
|
|
50 |
left bottom,
|
|
|
51 |
from(#333434),
|
|
|
52 |
to(#252626)
|
|
|
53 |
);
|
|
|
54 |
border-top:solid 1px #4b4b4b;
|
|
|
55 |
border-bottom:solid 1px #3e3f3f;
|
|
|
56 |
margin-top:-1px;
|
|
|
57 |
}
|