ode-bootstrap 1.1.2-feat-explorer.202303301811 → 1.1.2-feat-explorer.202304051621
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/version.txt +1 -1
- package/package.json +1 -1
- package/scss/components/_.scss +1 -0
- package/scss/components/_help.scss +78 -0
- package/scss/components/_modal.scss +10 -0
package/dist/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ode-bootstrap=1.1.2-feat-explorer-SNAPSHOT
|
|
1
|
+
ode-bootstrap=1.1.2-feat-explorer-SNAPSHOT 05/04/2023 16:21:50
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ode-bootstrap",
|
|
3
|
-
"version": "1.1.2-feat-explorer.
|
|
3
|
+
"version": "1.1.2-feat-explorer.202304051621",
|
|
4
4
|
"description": "Open Digital Education CSS framework based on bootstrap",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"copy-fonts": "cpr node_modules/entcore-generic-icons/fonts/ assets/fonts/generic-icons/ -o",
|
package/scss/components/_.scss
CHANGED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
#help-modal {
|
|
2
|
+
.section {
|
|
3
|
+
grid-row: 1 / 1;
|
|
4
|
+
grid-column: 2 / 2;
|
|
5
|
+
background: #fff;
|
|
6
|
+
|
|
7
|
+
&:target {
|
|
8
|
+
display: block !important;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.modal-body {
|
|
13
|
+
padding-top: $spacer-48;
|
|
14
|
+
display: grid;
|
|
15
|
+
background: white;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
#TOC {
|
|
19
|
+
position: absolute;
|
|
20
|
+
top: 0;
|
|
21
|
+
z-index: 2;
|
|
22
|
+
left: 0;
|
|
23
|
+
right: 0;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
#TOC > #TOC-list {
|
|
27
|
+
/* display: none; */
|
|
28
|
+
position: absolute;
|
|
29
|
+
left: 0;
|
|
30
|
+
right: 0;
|
|
31
|
+
z-index: 1;
|
|
32
|
+
background-color: #fff;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
#TOC > .btn {
|
|
36
|
+
display: block;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
#TOC + p {
|
|
40
|
+
display: none;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
#TOC > #TOC-list {
|
|
44
|
+
list-style: none;
|
|
45
|
+
border-left: 5px solid #ff8500;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
#TOC li {
|
|
49
|
+
display: block;
|
|
50
|
+
margin-block-start: 1em;
|
|
51
|
+
margin-block-end: 1em;
|
|
52
|
+
margin-inline-start: 0px;
|
|
53
|
+
margin-inline-end: 0px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
@include media-breakpoint-up(lg) {
|
|
57
|
+
#TOC {
|
|
58
|
+
position: relative;
|
|
59
|
+
|
|
60
|
+
> ul {
|
|
61
|
+
display: block;
|
|
62
|
+
}
|
|
63
|
+
> .btn {
|
|
64
|
+
display: none;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
#TOC-list {
|
|
69
|
+
display: block !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.modal-body {
|
|
73
|
+
display: grid;
|
|
74
|
+
grid-template-columns: 10em 1fr;
|
|
75
|
+
gap: 3.2rem;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
@@ -100,5 +100,15 @@ $modal-max-width-lg: 872px;
|
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
|
+
|
|
104
|
+
@include media-breakpoint-up(sm) {
|
|
105
|
+
margin-top: $spacer-32;
|
|
106
|
+
margin-bottom: $spacer-32;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
@include media-breakpoint-up(md) {
|
|
110
|
+
margin-top: $spacer-48;
|
|
111
|
+
margin-bottom: $spacer-48;
|
|
112
|
+
}
|
|
103
113
|
}
|
|
104
114
|
}
|