Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/* Rule so that the table tree view works with word-wrap: break-word. */
2
.block_private_files .content table {
3
    table-layout: fixed;
4
    width: 100%;
5
}
6
 
7
.block_private_files .content .footer {
8
    padding: 10px 0 0;
9
    margin-top: .5em;
10
}
11
 
12
.block_private_files ul[role="tree"] {
13
    margin: 0;
14
    padding: 0;
15
}
16
.block_private_files ul,
17
.block_private_files li {
18
    list-style: none;
19
}
20
 
21
.block_private_files [role="treeitem"] {
22
    padding-left: 22px;
23
    cursor: pointer;
24
}
25
 
26
.block_private_files [role="treeitem"] p {
27
    margin-bottom: 0;
28
}
29
 
30
.block_private_files [role="treeitem"][aria-expanded] {
31
    padding-left: 0;
32
}
33
 
1441 ariadna 34
.block_private_files [role="treeitem"][aria-expanded="false"] > p {
1 efrain 35
    /*rtl:remove*/
1441 ariadna 36
    background-image: url('[[pix:t/collapsed]]');
1 efrain 37
    /*rtl:raw:
1441 ariadna 38
        background-image: url('[[pix:t/collapsed_rtl]]');
1 efrain 39
    */
1441 ariadna 40
    background-size: 16px 16px;
41
    background-position: 1px 1px;
42
    background-repeat: no-repeat;
43
    padding-left: 22px;
1 efrain 44
}
45
 
1441 ariadna 46
.block_private_files [role="treeitem"][aria-expanded="true"] > p {
47
    background-image: url('[[pix:t/expanded]]');
48
    background-size: 16px 16px;
49
    background-position: 1px 1px;
50
    background-repeat: no-repeat;
51
    padding-left: 22px;
1 efrain 52
}
53
 
54
.block_private_files [role="treeitem"]:not([aria-expanded]) {
55
    background-image:
56
        repeating-linear-gradient(
57
            to right,
58
            rgba(0, 0, 0, .5) 0,
59
            rgba(0, 0, 0, .5) 1px,
60
            rgba(255, 255, 255, 0) 1px,
61
            rgba(255, 255, 255, 0) 2px
62
        ),
63
        repeating-linear-gradient(
64
            to top,
65
            rgba(0, 0, 0, 0.5) 0,
66
            rgba(0, 0, 0, 0.5) 1px,
67
            rgba(255, 255, 255, 0) 1px,
68
            rgba(255, 255, 255, 0) 2px
69
        );
70
    background-repeat: no-repeat, no-repeat;
71
    /*rtl:remove*/
72
    background-position: left 10px top 50%, left 8px top 0;
73
    /*rtl:raw:
74
        background-position: right 10px top 50%, right 8px top 0;
75
    */
76
    background-size: 11px 1px, 1px 100%;
77
}
78
 
79
.block_private_files [role="treeitem"]:not([aria-expanded]):last-child {
80
    background-size: 11px 1px, 1px 50%;
81
}
82
 
83
.block_private_files [role="group"] {
84
    background-image:
85
        repeating-linear-gradient(
86
            to top,
87
            rgba(0, 0, 0, 0.5) 0,
88
            rgba(0, 0, 0, 0.5) 1px,
89
            rgba(255, 255, 255, 0) 1px,
90
            rgba(255, 255, 255, 0) 2px
91
        );
92
    background-repeat: no-repeat;
93
    background-position: left 8px top 100%;
94
    background-size: 1px 100%;
1441 ariadna 95
    padding-left: 22px;
1 efrain 96
    margin-left: 0;
97
}
98
 
99
.block_private_files [aria-hidden="true"]:not(.icon) {
100
    display: none;
101
}