44 lines
720 B
SCSS
44 lines
720 B
SCSS
/* Fader Styles */
|
|
|
|
.fader {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
cursor: pointer;
|
|
position:relative;
|
|
}
|
|
|
|
.fader.vertical {
|
|
width: 28px;
|
|
background-image: url('/assets/content/bkg_gain_slider.png');
|
|
background-repeat:repeat-y;
|
|
background-position:bottom;
|
|
}
|
|
|
|
.fader.horizontal {
|
|
height: 17px;
|
|
background-image: url('/assets/content/bkg_slider_gain_horiz.png');
|
|
background-repeat:repeat-x;
|
|
background-position:left;
|
|
}
|
|
|
|
.fader .handle {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
position:absolute;
|
|
cursor:pointer;
|
|
left:0px;
|
|
}
|
|
.fader.vertical .handle {
|
|
width:28px;
|
|
height:11px;
|
|
bottom:0px;
|
|
}
|
|
|
|
.fader.horizontal .handle {
|
|
width:8px;
|
|
height:17px;
|
|
top:0px;
|
|
}
|
|
|
|
|