Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
.yui3-skin-sam .yui3-panel-content {
2
    -webkit-box-shadow: 0 0 5px #333;
3
    -moz-box-shadow: 0 0 5px #333;
4
    box-shadow: 0 0 5px #333;
5
    border: 1px solid black;
6
    background: white;
7
}
8
.yui3-skin-sam .yui3-panel .yui3-widget-hd {
9
    padding: 8px 28px 8px 8px;  /* Room for close button. */
10
    min-height: 13px;           /* For the close button */
11
    _height: 13px;              /* IE6 */
12
    color: white;
13
    background-color: #3961c5;
14
    background: -moz-linear-gradient(
15
        0% 100% 90deg,
16
        #2647a0 7%,
17
        #3d67ce 50%,
18
        #426fd9 100%
19
    );
20
    background: -webkit-gradient(
21
        linear,
22
        left bottom,
23
        left top,
24
        from(#2647a0),
25
        color-stop(0.07, #2647a0),
26
        color-stop(0.5, #3d67ce),
27
        to(#426fd9)
28
    );
29
    /*
30
    TODO: Add support for IE and W3C gradients
31
    */
32
}
33
.yui3-skin-sam .yui3-panel .yui3-widget-hd .yui3-widget-buttons {
34
    padding: 8px;
35
}
36
.yui3-skin-sam .yui3-panel .yui3-widget-bd {
37
    padding: 10px;
38
}
39
.yui3-skin-sam .yui3-panel .yui3-widget-ft {
40
	background: #EDF5FF;
41
	padding: 8px;
42
    text-align: right;
43
}
44
.yui3-skin-sam .yui3-panel .yui3-widget-ft .yui3-button {
45
    margin-left: 8px;
46
}
47
 
48
/*
49
Support for icon-based [x] "close" button in the header.
50
 
51
Nicolas Gallagher: "CSS image replacement with pseudo-elements (NIR)"
52
http://nicolasgallagher.com/css-image-replacement-with-pseudo-elements/
53
*/
54
.yui3-skin-sam .yui3-panel .yui3-widget-hd .yui3-button-close {
55
    /* Reset base button styles */
56
    background: transparent;
57
    filter: none;
58
    border: none;
59
    -webkit-border-radius: 0;
60
    -moz-border-radius: 0;
61
    border-radius: 0;
62
    -webkit-box-shadow: none;
63
    -moz-box-shadow: none;
64
    box-shadow: none;
65
 
66
    /* Structure */
67
    width: 13px;
68
    height: 13px;
69
    padding: 0;
70
    overflow: hidden;
71
    vertical-align: top;
72
    /* IE < 8 :( */
73
    *font-size: 0;
74
    *line-height: 0;
75
    *letter-spacing: -1000px;
76
    *color: #86A5EC;
77
    *background: url(sprite_icons.png) no-repeat 1px 1px;
78
}
79
.yui3-skin-sam .yui3-panel .yui3-widget-hd .yui3-button-close:before {
80
    /*
81
    Displays the [x] icon in place of the "Close" text.
82
    Note: The `width` of this pseudo element is the same as its "host" element.
83
    */
84
    content: url(sprite_icons.png);
85
    display: inline-block;
86
    text-align: center;
87
    font-size: 0;
88
    line-height: 0;
89
    width: 13px;
90
    margin: 1px 0 0 1px;
91
}
92
.yui3-skin-sam .yui3-panel-hidden .yui3-widget-hd .yui3-button-close {
93
    /* Required for IE > 7 to deal with pseudo :before element */
94
    display: none;
95
}