Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
.yui3-skin-night .yui3-panel {
2
    color: #FFFFFF;
3
    font-family: HelveticaNeue, arial, helvetica, clean, sans-serif;
4
}
5
 
6
.yui3-skin-night .yui3-panel-content {
7
    background: #6D6E6E;
8
    -webkit-box-shadow: 0 0 20px #000;
9
    -moz-box-shadow: 0 0 20px #000;
10
    box-shadow: 0 0 20px #000;
11
    border: 1px solid black;
12
    -webkit-border-radius: 7px;
13
    -moz-border-radius: 7px;
14
    border-radius: 7px;
15
}
16
.yui3-skin-night .yui3-panel .yui3-widget-hd {
17
    padding: 11px 57px 11px 22px;   /* Room for close button. */
18
    min-height: 17px;               /* For the close button */
19
    _height: 17px;                  /* IE6 */
20
    -webkit-border-top-left-radius: 7px;
21
    -webkit-border-top-right-radius: 7px;
22
    -moz-border-radius-topleft: 7px;
23
    -moz-border-radius-topright: 7px;
24
    border-top-left-radius: 7px;
25
    border-top-right-radius: 7px;
26
    font-weight: bold;
27
    color: white;
28
    background-color: #555658;
29
	background: -moz-linear-gradient(
30
		0% 100% 90deg,
31
		#343536 0%,
32
		#555658 96%,
33
		#3E3F41 100%
34
	);
35
    background: -webkit-gradient(
36
        linear,
37
        left bottom,
38
        left top,
39
        from(#343536),
40
        color-stop(0.96, #555658),
41
        to(#3E3F41)
42
    );
43
}
44
.yui3-skin-night .yui3-panel .yui3-widget-hd .yui3-widget-buttons {
45
    padding: 11px;
46
}
47
.yui3-skin-night .yui3-panel .yui3-widget-bd {
48
    padding: 11px 22px 17px;
49
}
50
.yui3-skin-night .yui3-panel .yui3-widget-ft {
51
    background-color: #575858;
52
    border-top: 1px solid #494A4A;
53
    padding: 6px 16px 8px;
54
    text-align: center;
55
    -webkit-border-bottom-right-radius: 7px;
56
    -webkit-border-bottom-left-radius: 7px;
57
    -moz-border-radius-bottomright: 7px;
58
    -moz-border-radius-bottomleft: 7px;
59
    border-bottom-right-radius: 7px;
60
    border-bottom-left-radius: 7px;
61
}
62
.yui3-skin-night .yui3-panel .yui3-widget-ft .yui3-widget-buttons {
63
    bottom: 0;
64
    position: relative;
65
    right: auto;
66
    width: 100%;
67
    text-align: center;
68
    padding-bottom: 0;
69
    margin-left: -5px;
70
    margin-right: -5px;
71
}
72
.yui3-skin-night .yui3-panel .yui3-widget-ft .yui3-button {
73
    margin: 5px;
74
}
75
 
76
/*
77
Support for icon-based [x] "close" button in the header.
78
 
79
Nicolas Gallagher: "CSS image replacement with pseudo-elements (NIR)"
80
http://nicolasgallagher.com/css-image-replacement-with-pseudo-elements/
81
*/
82
.yui3-skin-night .yui3-panel .yui3-widget-hd .yui3-button-close {
83
    /* Reset base button styles */
84
    background: transparent;
85
    filter: none;
86
    border: none;
87
    -webkit-box-shadow: none;
88
    -moz-box-shadow: none;
89
    box-shadow: none;
90
 
91
    /* Structure */
92
    width: 22px;
93
    height: 17px;
94
    padding: 0;
95
    overflow: hidden;
96
    vertical-align: top;
97
    /* IE < 8 :( */
98
    *font-size: 0;
99
    *line-height: 0;
100
    *letter-spacing: -1000px;
101
    *color: #86A5EC;
102
    *background: url(sprite_icons.png) no-repeat center 3px;
103
}
104
.yui3-skin-night .yui3-panel .yui3-widget-hd .yui3-button-close:hover {
105
    background-color: #333;
106
}
107
.yui3-skin-night .yui3-panel .yui3-widget-hd .yui3-button-close:before {
108
    /*
109
    Displays the [x] icon in place of the "Close" text.
110
    Note: The `width` of this pseudo element is the same as its "host" element.
111
    */
112
    content: url(sprite_icons.png);
113
    display: inline-block;
114
    text-align: center;
115
    font-size: 0;
116
    line-height: 0;
117
    width: 22px;
118
    margin: 3px 0 0 1px;
119
}
120
.yui3-skin-night .yui3-panel-hidden .yui3-widget-hd .yui3-button-close {
121
    /* Required for IE > 7 to deal with pseudo :before element */
122
    display: none;
123
}