Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
.yui3-skin-night .yui3-tabview-panel{
2
	background-color:#333333;
3
	color:#808080;
4
	padding:1px;
5
}
6
.yui3-skin-night .yui3-tab-panel p{
7
	margin:10px;
8
}
9
.yui3-skin-night .yui3-tabview-list {
10
    background-color:#0f0f0f;
11
    border-top:1px solid #000;
12
	text-align:center;
13
    height:46px;
14
    background: -moz-linear-gradient(
15
		0% 100% 90deg,
16
		#0f0f0f 0%,
17
		#1e1e1e 96%,
18
		#292929 100%
19
	);
20
    background: -webkit-gradient(
21
        linear,
22
        left bottom,
23
        left top,
24
        from(#0f0f0f),
25
        color-stop(0.96, #1e1e1e),
26
        to(#292929)
27
    );
28
}
29
 
30
.yui3-skin-night .yui3-tabview-list li {
31
	margin-top:8px;
32
}
33
.yui3-skin-night .yui3-tabview-list li a{
34
	border:solid 1px #0c0c0c;
35
	border-right-style:none;
36
 
37
	-moz-box-shadow: 0 1px #222222;
38
	-webkit-box-shadow: 0 1px #222222;
39
	box-shadow: 0 1px #222222;
40
 
41
    text-shadow: 0 -1px 0 rgba(0,0,0,0.7);
42
	font-size:85%;
43
	text-align:center;
44
	color: #fff;
45
	padding: 6px 28px;
46
	background-color:#555658;
47
	background: -moz-linear-gradient(
48
		0% 100% 90deg,
49
		#343536 0%,
50
		#555658 96%,
51
		#3E3F41 100%
52
	);
53
    background: -webkit-gradient(
54
        linear,
55
        left bottom,
56
        left top,
57
        from(#343536),
58
        color-stop(0.96, #555658),
59
        to(#3E3F41)
60
    );
61
}
62
.yui3-skin-night .yui3-tabview-list li.yui3-tab-selected a {
63
	background-color:#2B2D2D;
64
	background: -moz-linear-gradient(
65
		0% 100% 90deg,
66
		#242526 0%,
67
		#3b3c3d 96%,
68
		#2C2D2F 100%
69
	);
70
    background: -webkit-gradient(
71
        linear,
72
        left bottom,
73
        left top,
74
        from(#242526),
75
        color-stop(0.96, #3b3c3d),
76
        to(#2C2D2F)
77
    );
78
}
79
.yui3-skin-night .yui3-tabview-list li:first-child a{
80
	-moz-border-radius:6px 0 0 6px;
81
	-webkit-border-radius:6px 0 0 6px;
82
	border-radius:6px 0 0 6px;
83
}
84
.yui3-skin-night .yui3-tabview-list li:last-child a{
85
	border-right-style:solid;
86
	-moz-border-radius:0 6px 6px 0;
87
	-webkit-border-radius:0 6px 6px 0;
88
	border-radius:0 6px 6px 0;
89
}