Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
.block_completion_progress .content {
2
    text-align: left;
3
}
4
 
5
.block_completion_progress .barContainer {
6
    position: relative;
7
    padding: 0;
8
    clear: both;
9
}
10
 
11
.block_completion_progress .left-arrow-svg,
12
.block_completion_progress .right-arrow-svg {
13
    position: absolute;
14
    top: calc(50% - 10px);
15
    display: none;
16
    z-index: 10;
17
}
18
 
19
.block_completion_progress .left-arrow-svg {
20
    /* rtl:ignore */
21
    left: 5px;
22
}
23
.block_completion_progress .right-arrow-svg {
24
    /* rtl:ignore */
25
    right: 5px;
26
}
27
 
28
.block_completion_progress .triangle-polygon {
29
    fill: rgba(0, 0, 0, 0.3);
30
    stroke: white;
31
    stroke-width: 3px;
32
}
33
 
34
.block_completion_progress .barRow {
35
    padding: 0;
36
    width: 100%;
37
    margin: 0;
38
    min-height: 1.6rem;
39
    overflow: hidden;
40
    scroll-behavior: smooth;
41
}
42
 
43
.block_completion_progress .progressBarCell {
44
    height: 1.6rem;
45
    margin: 0;
46
    padding: 0;
47
    text-align: center;
48
    vertical-align: middle;
49
    border-left: solid 1px #e3e3e3;
50
    border-top: solid 1px #e3e3e3;
51
    position: relative;
52
}
53
.block_completion_progress .progressBarCell[data-haslink=true] {
54
    cursor: pointer;
55
}
56
.block_completion_progress .progressBarCell[data-haslink=not-allowed] {
57
    cursor: not-allowed;
58
}
59
 
60
.block_completion_progress .barModeScroll .barRowCells {
61
    white-space: nowrap;
62
}
63
.block_completion_progress .barModeScroll .progressBarCell {
64
    display: inline-block;
65
    width: 1.6rem;
66
}
67
.block_completion_progress .barModeSqueeze .barRowCells {
68
    display: flex;
69
}
70
.block_completion_progress .barModeSqueeze .progressBarCell {
71
    display: inline-block;
72
    flex: 1 1 0;
73
}
74
.block_completion_progress .barModeWrap .barRowCells {
75
    display: flex;
76
    flex-wrap: wrap;
77
}
78
.block_completion_progress .barModeWrap .progressBarCell {
79
    display: inline-block;
80
    flex-grow: 0;
81
    flex-shrink: 0;
82
    flex-basis: inherit;    /* Will be computed and declared inline on the .barRow element. */
83
}
84
.block_completion_progress .barWithNow .barRowCells {
85
    margin-top: 1.6rem;
86
}
87
 
88
.block_completion_progress .progressBarCell .nowDiv {
89
    position: absolute;
90
    top: -100%;
91
    white-space: nowrap;
92
    width: 100px;
93
}
94
 
95
.block_completion_progress .progressBarCell .firstNow {
96
    left: 0;
97
    text-align: left;
98
}
99
 
100
.block_completion_progress .progressBarCell .firstHalfNow {
101
    left: 100%;
102
    text-align: left;
103
}
104
 
105
.block_completion_progress .progressBarCell .lastHalfNow {
106
    right: 0;
107
    text-align: right;
108
}
109
 
110
.block_completion_progress .progressBarCell .nowicon {
111
    width: 15px;
112
    height: 15px;
113
    margin: 0;
114
    padding: 0;
115
}
116
 
117
.block_completion_progress .barModeScroll .progressBarCell:first-of-type,
118
.block_completion_progress .barModeSqueeze .progressBarCell:first-of-type {
119
    border-top-left-radius: 0.26rem;
120
    border-bottom-left-radius: 0.26rem;
121
}
122
 
123
.block_completion_progress .barModeScroll .progressBarCell:last-of-type,
124
.block_completion_progress .barModeSqueeze .progressBarCell:last-of-type {
125
    border-top-right-radius: 0.26rem;
126
    border-bottom-right-radius: 0.26rem;
127
    border-right: solid 1px #e3e3e3;
128
}
129
 
130
.block_completion_progress .barWithIcons .progressBarCell::before {
131
    display: inline-block;
132
    content: '';
133
    width: 100%;
134
    height: 100%;
135
    max-width: 16px;
136
    background-position: 50% 50%;
137
    background-repeat: no-repeat;
138
    background-size: contain;
139
}
140
.block_completion_progress .barWithIcons .progressBarCell.completed::before {
141
    background-image: url([[pix:block_completion_progress|tick]]);
142
}
143
.block_completion_progress .barWithIcons .progressBarCell.notCompleted::before {
144
    background-image: url([[pix:block_completion_progress|cross]]);
145
}
146
 
147
.block_completion_progress .progressEventInfo,
148
.block_completion_progress .progressPercentage {
149
    font-size: x-small;
150
    text-align: left;
151
    white-space: pre;
152
    overflow: hidden;
153
    padding: 0;
154
    margin: 5px;
155
}
156
.block_completion_progress .progressEventInfo {
157
    white-space: pre-wrap;
158
}
159
.block_completion_progress .progressEventInfo .iconInInfo,
160
#fitem_id_config_progressBarIcons .iconOnConfig {
161
    height: 1.2em;
162
    width: 1.2em;
163
}
164
 
165
#page-blocks-completion_progress-overview .overviewTable {
166
    table-layout: fixed;
167
}
168
#page-blocks-completion_progress-overview .overviewTable .col-select {
169
    width: 2rem;
170
    text-align: center;
171
}
172
#page-blocks-completion_progress-overview .overviewTable .col-fullname {
173
    width: 20%;
174
}
175
#page-blocks-completion_progress-overview .overviewTable .col-timeaccess {
176
    width: 15%;
177
}
178
#page-blocks-completion_progress-overview .overviewTable .col-progressbar {
179
    min-width: 200px;
180
}
181
#page-blocks-completion_progress-overview .overviewTable .col-progress {
182
    width: 6rem;
183
    text-align: center;
184
}
185
 
186
.block_completion_progress .progressEventInfo img {
187
    vertical-align: middle;
188
}
189
 
190
.block_completion_progress .moduleIcon {
191
    float: left;
192
    margin-right: 5px;
193
    max-width: 24px;
194
}
195
 
196
.block_completion_progress .progressBarHeader {
197
    font-size: 90%;
198
    margin: 0;
199
    padding: 0;
200
}
201
 
202
.block_completion_progress h3 {
203
    margin-bottom: 0;
204
}
205
 
206
.block_completion_progress .expectedBy {
207
    margin: 5px auto;
208
}
209
 
210
.block_completion_progress .overviewButton {
211
    margin: 10px;
212
    text-align: center;
213
}
214
 
215
#page-blocks-completion_progress-overview .progressoverviewmenus {
216
    margin-bottom: 1rem;
217
}
218
#page-blocks-completion_progress-overview .progressoverviewmenus .singleselect + .singleselect {
219
    margin-left: 1rem;
220
}
221