Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/* basic skin styles */
2
.yui3-skin-night .yui3-datatable {
3
	color:#8E8E8E;
4
	font-family: HelveticaNeue,arial,helvetica,clean,sans-serif;
5
}
6
.yui3-skin-night .yui3-datatable-table {
7
    border: 1px solid #323434;
8
    border-collapse: separate;
9
    border-spacing: 0;
10
	color: #8E8E8E;
11
    margin: 0;
12
    padding: 0;
13
}
14
 
15
.yui3-skin-night .yui3-datatable-caption {
16
    color: #474747;
17
    font: italic 85%/1 HelveticaNeue,arial,helvetica,clean,sans-serif;
18
    padding: 1em 0;
19
    text-align: center;
20
}
21
 
22
.yui3-skin-night .yui3-datatable-cell,
23
.yui3-skin-night .yui3-datatable-header {
24
    border-left: 1px solid #303030;/*  inner column border */
25
    border-width: 0 0 0 1px;
26
    font-size: inherit;
27
    margin: 0;
28
	overflow: visible; /*to make ths where the title is really long work*/
29
    padding: 4px 10px 4px 10px; /* cell padding */
30
}
31
.yui3-skin-night .yui3-datatable-cell:first-child,
32
.yui3-skin-night .yui3-datatable-first-header {
33
    border-left-width: 0;
34
}
35
 
36
.yui3-skin-night .yui3-datatable-header {
37
    /* header gradient */
38
    background-color:#3b3c3d;
39
 
40
	background: -moz-linear-gradient(
41
		0% 100% 90deg,
42
		#242526 0%,
43
		#3b3c3d 96%,
44
		#2C2D2F 100%
45
	);
46
    background: -webkit-gradient(
47
        linear,
48
        left bottom,
49
        left top,
50
        from(#242526),
51
        color-stop(0.96, #3b3c3d),
52
        to(#2C2D2F)
53
    );
54
    color: #eee;
55
    font-weight: normal;
56
    text-align: left;
57
    vertical-align: bottom;
58
    white-space: nowrap;
59
}
60
 
61
/*
62
striping:
63
   even - #0e0e0e (darkest)
64
   odd  - #1d1e1e (lighter)
65
*/
66
.yui3-skin-night .yui3-datatable-cell {
67
    background-color: transparent;
68
}
69
.yui3-skin-night .yui3-datatable-even .yui3-datatable-cell {
70
    background-color: #0e0e0e;
71
}
72
.yui3-skin-night .yui3-datatable-odd .yui3-datatable-cell  {
73
    background-color: #1d1e1e;
74
}