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-sam .yui3-datatable-table {
3
    margin: 0;
4
    padding: 0;
5
    font-family: arial, sans-serif;
6
    border-collapse: separate;
7
    border-spacing: 0;
8
    /* IE7- don't support border-spacing, but separate is needed for more
9
     * reliable dimension calculation for scrollable's header width sync,
10
     * and it doesn't hurt to have the declaration here.
11
     */
12
    /**border-collapse: collapse;*/
13
    border: 1px solid #cbcbcb;
14
}
15
 
16
.yui3-skin-sam .yui3-datatable-caption {
17
    color: #000;
18
    font: italic 85%/1 arial, sans-serif;
19
    padding: 1em 0;
20
    text-align: center;
21
}
22
 
23
.yui3-skin-sam .yui3-datatable-cell,
24
.yui3-skin-sam .yui3-datatable-header {
25
    border-left: 1px solid #cbcbcb;/*  inner column border */
26
    border-width: 0 0 0 1px;
27
    font-size: inherit;
28
    margin: 0;
29
	overflow: visible; /*to make ths where the title is really long work*/
30
    padding: 4px 10px 4px 10px; /* cell padding */
31
}
32
.yui3-skin-sam .yui3-datatable-cell:first-child,
33
.yui3-skin-sam .yui3-datatable-first-header {
34
    border-left-width: 0px;
35
}
36
 
37
.yui3-skin-sam .yui3-datatable-header {
38
    /* header gradient */
39
    background: #fff url(../../../../assets/skins/sam/sprite.png) repeat-x 0 0;
40
 
41
    background-image:-webkit-linear-gradient(transparent 40%, rgba(0,0,0,0.21));
42
    background-image:-moz-linear-gradient(top,transparent 40%,rgba(0,0,0,0.21));
43
    background-image:    -ms-linear-gradient(transparent 40%, rgba(0,0,0,0.21));
44
    background-image:     -o-linear-gradient(transparent 40%, rgba(0,0,0,0.21));
45
    background-image:        linear-gradient(transparent 40%, rgba(0,0,0,0.21));
46
    /* Not using an IE gradient because it doesn't support color stops */
47
 
48
    color: #000;
49
    font-weight: normal;
50
    text-align: left;
51
    text-shadow: 0 1px 1px #fff;
52
    vertical-align: bottom;
53
    white-space: nowrap;
54
}
55
 
56
/*
57
striping:
58
   even - #fff (white)
59
   odd  - #edf5ff (light blue)
60
*/
61
.yui3-skin-sam .yui3-datatable-cell {
62
    background-color: transparent;
63
}
64
.yui3-skin-sam .yui3-datatable-even .yui3-datatable-cell {
65
    background-color: #fff;
66
}
67
.yui3-skin-sam .yui3-datatable-odd  .yui3-datatable-cell  {
68
    background-color: #edf5ff;
69
}