Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/* Use the same css like a label */
2
.unilabel .mod-indent {
3
    float: left;
4
    padding-top: 20px;
5
}
6
.section .unilabel .mod-indent-outer {
7
    padding-left: 24px;
8
    display: block;
9
}
10
.section .unilabel .mod-indent-outer .contentwithoutlink {
11
    display: inline;
12
}
13
.section .unilabel .mod-indent-outer .unilabel-content {
14
    margin-bottom: 1rem;
15
}
16
 
17
/* If the carousel item is a link it overlaps the controls */
18
.unilabel .carousel .carousel-control-prev,
19
.unilabel .carousel .carousel-control-next {
20
    z-index: 998;
21
    mix-blend-mode: difference;
22
}
23
 
24
/* Nice overlay effect which can be used in subplugins */
25
.unilabel-overlay-effect:hover {
26
    opacity: 0.3;
27
}
28
.unilabel-overlay-effect {
29
    position: absolute;
30
    top: 0;
31
    bottom: 0;
32
    left: 0;
33
    right: 0;
34
    opacity: 0;
35
    transition: .5s ease;
36
    overflow: hidden;
37
    z-index: 998;
38
}
39
 
40
/* Drag and drop style */
41
#page-mod-unilabel-edit_content form fieldset span .draghandle {
42
    display: none;
43
}
44
#page-mod-unilabel-edit_content form fieldset.draggable span .draghandle {
45
    cursor: move;
46
    display: inline;
47
}
48
#page-mod-unilabel-edit_content form fieldset.draggable.dragging {
49
    opacity: 0;
50
}
51
 
52
#page-mod-unilabel-edit_content div.activitytitle.unilabel-input-replacement {
53
    width: 450px;
54
}
55
 
56
/* Activity picker replacement */
57
#page-mod-unilabel-edit_content div.unilabel-input-replacement {
58
    padding-right: .5rem;
59
    border-style: solid;
60
    border-width: 2px;
61
}
62
 
63
/* Hyphenation to break long words, for example in the grid  */
64
.unilabel-hyphens {
65
    hyphens: auto;
66
}
67
 
68
/***********************************************/
69
/*
70
This is a workaround for a five-column grid.
71
We have to put it here because in <plugin>/styles.css it is loaded before bootstrap and overriden.
72
*/
73
.unilabel-content .col-2dot4,
74
.unilabel-content .col-sm-2dot4,
75
.unilabel-content .col-md-2dot4,
76
.unilabel-content .col-lg-2dot4,
77
.unilabel-content .col-xl-2dot4 {
78
    position: relative;
79
    width: 100%;
80
    min-height: 1px;
81
    padding-right: 15px;
82
    padding-left: 15px;
83
}
84
.unilabel-content .col-2dot4 {
85
    -webkit-box-flex: 0;
86
    -ms-flex: 0 0 20%;
87
    flex: 0 0 20%;
88
    max-width: 20%;
89
}
90
 
91
@media (min-width: 576px) {
92
    .unilabel-content .col-sm-2dot4 {
93
        -webkit-box-flex: 0;
94
        -ms-flex: 0 0 20%;
95
        flex: 0 0 20%;
96
        max-width: 20%;
97
    }
98
}
99
 
100
@media (min-width: 768px) {
101
    .unilabel-content .col-md-2dot4 {
102
        -webkit-box-flex: 0;
103
        -ms-flex: 0 0 20%;
104
        flex: 0 0 20%;
105
        max-width: 20%;
106
    }
107
}
108
 
109
@media (min-width: 992px) {
110
    .unilabel-content .col-lg-2dot4 {
111
        -webkit-box-flex: 0;
112
        -ms-flex: 0 0 20%;
113
        flex: 0 0 20%;
114
        max-width: 20%;
115
    }
116
}
117
 
118
@media (min-width: 1200px) {
119
    .unilabel-content .col-xl-2dot4 {
120
        -webkit-box-flex: 0;
121
        -ms-flex: 0 0 20%;
122
        flex: 0 0 20%;
123
        max-width: 20%;
124
    }
125
}
126
/***********************************************/