ode-bootstrap 1.3.2 → 1.3.4
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
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ode-bootstrap
|
|
1
|
+
ode-bootstrap 28/05/2024 18:10:12
|
package/package.json
CHANGED
package/scss/components/_.scss
CHANGED
|
@@ -35,6 +35,7 @@ $icons-interface: (
|
|
|
35
35
|
"view" : ( "glyph": "\e873"),
|
|
36
36
|
"warning" : ( "glyph": "\e903"),
|
|
37
37
|
"edumalin" : ( "glyph": "\e967")
|
|
38
|
+
"mediacentre" : ( "glyph": "\e863")
|
|
38
39
|
) !default;
|
|
39
40
|
|
|
40
41
|
$icons-widgets: (
|
|
@@ -86,6 +87,9 @@ $icons-widgets: (
|
|
|
86
87
|
"edumalin": (
|
|
87
88
|
"glyph": "\e967",
|
|
88
89
|
),
|
|
90
|
+
"mediacentre": (
|
|
91
|
+
"glyph": "\e863",
|
|
92
|
+
)
|
|
89
93
|
) !default;
|
|
90
94
|
|
|
91
95
|
$icons-applications: (
|
|
@@ -353,6 +357,10 @@ $icons-applications: (
|
|
|
353
357
|
"color": $blue,
|
|
354
358
|
"glyph": "\e967",
|
|
355
359
|
),
|
|
360
|
+
"mediacentre": (
|
|
361
|
+
"color": $red,
|
|
362
|
+
"glyph": "\e863",
|
|
363
|
+
)
|
|
356
364
|
) !default;
|
|
357
365
|
|
|
358
366
|
$icons-connectors: (
|
|
@@ -1,82 +0,0 @@
|
|
|
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
|
-
&:first-child {
|
|
56
|
-
margin-top: 0;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
@include media-breakpoint-up(lg) {
|
|
61
|
-
#TOC {
|
|
62
|
-
position: relative;
|
|
63
|
-
|
|
64
|
-
> ul {
|
|
65
|
-
display: block;
|
|
66
|
-
}
|
|
67
|
-
> .btn {
|
|
68
|
-
display: none;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
#TOC-list {
|
|
73
|
-
display: block !important;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.modal-body {
|
|
77
|
-
display: grid;
|
|
78
|
-
grid-template-columns: 10em 1fr;
|
|
79
|
-
gap: 3.2rem;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
}
|