-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (46 loc) · 1.08 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* hay que ser específicos porque los elementos tienen algunas
propiedades marcadas como !important */
#nav-drawer .list-group-item[data-parent-key="mycourses"] {
display: flex;
align-items: center;
justify-content: space-between;
padding-right: 0.25rem !important;
}
#nav-drawer .list-group-item[data-parent-key="mycourses"]:hover .custom-not-favorite {
opacity: 0.5;
}
.custom-not-favorite:hover {
opacity: 0.9 !important;
}
#nav-drawer .list-group-item[data-parent-key="mycourses"]:hover .custom-options {
opacity: 1.0;
}
#nav-drawer .list-group-item[data-parent-key="mycourses"]:hover .custom-deletable {
opacity: 1.0;
}
.custom-hidden {
opacity: 0.0;
}
.custom-options,
.custom-deletable,
.custom-not-favorite {
opacity: 0.0;
cursor: pointer;
}
.custom-favorite {
opacity: 1.0;
cursor: pointer;
}
.custom-not-deletable {
opacity: 0.0;
}
.list-group-item {
cursor: pointer;
}
/* Eliminar barra GIGANTE que NO SIRVE PARA NADA */
.col-md-12.header-md {
display: none !important;
}
.header-main {
display: none !important;
}