Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/* Horizontal Slider */
2
 
3
/* Use thumbUrl /build/slider-base/assets/skins/round-dark/thumb-x.png */
4
/* Alternate thumbUrl /build/slider-base/assets/skins/round-dark/thumb-x-grip.png */
5
 
6
.yui3-skin-round-dark .yui3-slider-x .yui3-slider-rail,
7
.yui3-skin-round-dark .yui3-slider-x .yui3-slider-rail-cap-left,
8
.yui3-skin-round-dark .yui3-slider-x .yui3-slider-rail-cap-right {
9
    background-image: url(rail-x.png);
10
    background-repeat: repeat-x;
11
}
12
 
13
.yui3-skin-round-dark .yui3-slider-x .yui3-slider-rail {
14
    height: 25px;
15
    background-position: 0 3px;
16
}
17
.yui3-skin-round-dark .yui3-slider-x .yui3-slider-thumb {
18
    height: 26px;
19
    width: 24px;
20
}
21
 
22
.yui3-skin-round-dark .yui3-slider-x .yui3-slider-rail-cap-left {
23
    background-position: 0 -17px;
24
    height: 20px;
25
    left: -2px;
26
    width: 5px;
27
}
28
.yui3-skin-round-dark .yui3-slider-x .yui3-slider-rail-cap-right {
29
    background-position: 0 -37px;
30
    height: 20px;
31
    right: -2px;
32
    width: 5px;
33
}
34
 
35
.yui3-skin-round-dark .yui3-slider-x .yui3-slider-thumb-image {
36
    left: 0;
37
    top: -7px;
38
}
39
.yui3-skin-round-dark .yui3-slider-x .yui3-slider-thumb-shadow {
40
    left: 0;
41
    opacity: 0.15;
42
    filter: alpha(opacity=15);
43
    top: -47px;
44
}
45
 
46
/* Vertical Slider */
47
 
48
/* Use thumbUrl /build/slider-base/assets/skins/round-dark/thumb-y.png */
49
/* Alternate thumbUrl /build/slider-base/assets/skins/round-dark/thumb-y-grip.png */
50
 
51
.yui3-skin-round-dark .yui3-slider-y .yui3-slider-rail,
52
.yui3-skin-round-dark .yui3-slider-y .yui3-slider-rail-cap-top,
53
.yui3-skin-round-dark .yui3-slider-y .yui3-slider-rail-cap-bottom {
54
    background-image: url(rail-y.png);
55
    background-repeat: repeat-y;
56
}
57
 
58
.yui3-skin-round-dark .yui3-slider-y .yui3-slider-rail {
59
    width: 25px;
60
    background-position: 3px 0;
61
}
62
.yui3-skin-round-dark .yui3-slider-y .yui3-slider-thumb {
63
    width: 26px;
64
    height: 24px;
65
}
66
 
67
.yui3-skin-round-dark .yui3-slider-y .yui3-slider-rail-cap-top {
68
    background-position: -17px 0;
69
    width: 20px;
70
    top: -2px;
71
    height: 5px;
72
}
73
.yui3-skin-round-dark .yui3-slider-y .yui3-slider-rail-cap-bottom {
74
    background-position: -37px 0;
75
    width: 20px;
76
    bottom: -2px;
77
    height: 5px;
78
}
79
 
80
.yui3-skin-round-dark .yui3-slider-y .yui3-slider-thumb-image {
81
    top: 0;
82
    left: -7px;
83
}
84
.yui3-skin-round-dark .yui3-slider-y .yui3-slider-thumb-shadow {
85
    top: 0;
86
    left: -47px;
87
    opacity: 0.15;
88
    filter: alpha(opacity=15);
89
}