Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/* foundational CSS */
2
.yui3-datatable-scrollable-x {
3
    _overflow-x: hidden;
4
    _position: relative;
5
}
6
 
7
.yui3-datatable-scrollable-y,
8
.yui3-datatable-scrollable-y .yui3-datatable-x-scroller {
9
    _overflow-y: hidden;
10
    _position: relative;
11
}
12
 
13
.yui3-datatable-y-scroller-container {
14
    overflow-x: hidden;
15
    position: relative;
16
}
17
 
18
.yui3-datatable-scrollable-y .yui3-datatable-content {
19
    /* To allow absolute positioning of virtual scrollbar */
20
    position: relative;
21
}
22
 
23
.yui3-datatable-scrollable-y .yui3-datatable-table .yui3-datatable-columns {
24
    /* Prevent masked headers from showing during momentum scrolling */
25
    visibility: hidden;
26
}
27
 
28
.yui3-datatable-scroll-columns {
29
    position: absolute;
30
    width: 100%;
31
    z-index: 2;
32
}
33
 
34
.yui3-datatable-y-scroller,
35
.yui3-datatable-scrollable-x .yui3-datatable-caption-table {
36
    width: 100%;
37
}
38
 
39
.yui3-datatable-x-scroller {
40
    position: relative;
41
    overflow-x: scroll;
42
    overflow-y: hidden;
43
}
44
 
45
.yui3-datatable-scrollable-y .yui3-datatable-y-scroller {
46
    position: relative;
47
    overflow-x: hidden;
48
    overflow-y: scroll;
49
    z-index: 1;
50
    -webkit-overflow-scrolling: touch;
51
}
52
 
53
.yui3-datatable-scrollbar {
54
    position: absolute;
55
    overflow-x: hidden;
56
    overflow-y: scroll;
57
    z-index: 2;
58
}
59
 
60
.yui3-datatable-scrollbar div {
61
    position: absolute;
62
    width: 1px;
63
    visibility: hidden;
64
}
65
 
66
/* Removed because it prevented cmd + zoom resizing in Chrome (at least) */
67
/*
68
.yui3-datatable-header {
69
    -webkit-text-size-adjust: none;
70
}
71
*/