scrollview-base-skin.css revision 38dc51e07d95d1f02b709139ee7fe8caab01ad61
.yui3-skin-night{
background-color:#000;
font-family: HelveticaNeue,arial,helvetica,clean,sans-serif;
color:#fff;
}
.yui3-skin-night .yui3-scrollview {
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.yui3-skin-night .yui3-scrollview{
background-color:#000;
}
/* For IE 6/7 - needs a background color (above) to pick up events, and zoom, to fill the UL */
.yui3-skin-night .yui3-scrollview-vert .yui3-scrollview-content li {
*zoom:1;
}
/* For IE7 - needs zoom, otherwise clipped content is not rendered */
.yui3-skin-night .yui3-scrollview-vert .yui3-scrollview-content ul {
*zoom:1;
list-style:none; /*need these since reset is not required*/
padding:0; /*need these since reset is not required*/
margin:0; /*need these since reset is not required*/
}
.yui3-skin-night .yui3-scrollview-vert .yui3-scrollview-content {
/*border:1px solid #303030; If the ScrollView needs a border add it here */
border-top:0;
background-color:#000;
font-family: HelveticaNeue,arial,helvetica,clean,sans-serif;
color:#fff;
}
.yui3-skin-night .yui3-scrollview-vert .yui3-scrollview-content li {
border-bottom: 1px solid #303030;
padding: 15px 20px 16px;
font-size: 100%;
font-weight: bold;
background-color:#151515;
cursor:pointer;
}
.yui3-skin-night .yui3-scrollview-vert .yui3-scrollview-content li.selected{
background-color:#2C2D2E;
background: -moz-linear-gradient(
0% 100% 90deg,
#252626 0%,
#333434 100%
);
background: -webkit-gradient(
linear,
left top,
left bottom,
from(#333434),
to(#252626)
);
border-top:solid 1px #4b4b4b;
border-bottom:solid 1px #3e3f3f;
margin-top:-1px;
}