ode-bootstrap 1.1.4-dev.202306161541 → 1.1.4-dev.202307041111
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/tokens/_.scss +1 -1
- package/scss/utilities/_containers.scss +1 -1
- package/scss/variables/_.scss +1 -1
- package/scss/variables/_bootstrap.scss +33 -33
- package/scss/vendors/_reboot.scss +0 -4
- /package/assets/images/emptyscreen/{illu-noContentInFolder.svg → illu-no-content-in-folder.svg} +0 -0
- /package/assets/images/onboarding/{corbeille-delete.svg → illu-trash-delete.svg} +0 -0
- /package/assets/images/onboarding/{corbeille-menu.svg → illu-trash-menu.svg} +0 -0
- /package/dist/images/emptyscreen/{illu-noContentInFolder.svg → illu-no-content-in-folder.svg} +0 -0
- /package/dist/images/onboarding/{corbeille-delete.svg → illu-trash-delete.svg} +0 -0
- /package/dist/images/onboarding/{corbeille-menu.svg → illu-trash-menu.svg} +0 -0
package/dist/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ode-bootstrap=1.1.4-dev-SNAPSHOT
|
|
1
|
+
ode-bootstrap=1.1.4-dev-SNAPSHOT 04/07/2023 11:11:44
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ode-bootstrap",
|
|
3
|
-
"version": "1.1.4-dev.
|
|
3
|
+
"version": "1.1.4-dev.202307041111",
|
|
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/tokens/_.scss
CHANGED
package/scss/variables/_.scss
CHANGED
|
@@ -19,29 +19,13 @@ $link-decoration: none !default;
|
|
|
19
19
|
// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast
|
|
20
20
|
$min-contrast-ratio: 1.75 !default;
|
|
21
21
|
|
|
22
|
-
//
|
|
23
|
-
$
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
xxl: 1400px,
|
|
30
|
-
) !default;
|
|
31
|
-
|
|
32
|
-
// Container Max Widths
|
|
33
|
-
$container-max-widths: (
|
|
34
|
-
sm: 540px,
|
|
35
|
-
md: 720px,
|
|
36
|
-
lg: 960px,
|
|
37
|
-
xl: 1140px,
|
|
38
|
-
xxl: 1352px,
|
|
39
|
-
) !default;
|
|
40
|
-
|
|
41
|
-
$container-padding-x: 3.2rem;
|
|
42
|
-
|
|
43
|
-
// Gutter Grid CSS
|
|
44
|
-
$grid-gutter-width: 2.4rem;
|
|
22
|
+
// Radius
|
|
23
|
+
$border-radius: 0.8rem !default;
|
|
24
|
+
$border-radius-sm: 0.4rem !default;
|
|
25
|
+
$border-radius-lg: 1.2rem !default;
|
|
26
|
+
$border-radius-xl: 1.6rem !default;
|
|
27
|
+
$border-radius-2xl: 2.4rem !default;
|
|
28
|
+
$border-radius-pill: 50rem !default;
|
|
45
29
|
|
|
46
30
|
// Spacers for margins, paddings and gaps
|
|
47
31
|
$spacer-0: 0 !default;
|
|
@@ -54,7 +38,7 @@ $spacer-24: 2.4rem !default;
|
|
|
54
38
|
$spacer-32: 3.2rem !default;
|
|
55
39
|
$spacer-48: 4.8rem !default;
|
|
56
40
|
$spacer-64: 6.4rem !default;
|
|
57
|
-
$spacer-120: 12rem !default;
|
|
41
|
+
// $spacer-120: 12rem !default;
|
|
58
42
|
|
|
59
43
|
$spacers: (
|
|
60
44
|
0: $spacer-0,
|
|
@@ -67,18 +51,34 @@ $spacers: (
|
|
|
67
51
|
32: $spacer-32,
|
|
68
52
|
48: $spacer-48,
|
|
69
53
|
64: $spacer-64,
|
|
70
|
-
|
|
54
|
+
// 128: $spacer-128,
|
|
71
55
|
) !default;
|
|
72
56
|
|
|
73
|
-
|
|
57
|
+
// Grid breakpoints
|
|
58
|
+
$grid-breakpoints: (
|
|
59
|
+
xs: 0,
|
|
60
|
+
sm: 375px,
|
|
61
|
+
md: 768px,
|
|
62
|
+
lg: 1024px,
|
|
63
|
+
xl: 1280px,
|
|
64
|
+
xxl: 1400px,
|
|
65
|
+
) !default;
|
|
74
66
|
|
|
75
|
-
//
|
|
76
|
-
$
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
67
|
+
// Container Max Widths
|
|
68
|
+
$container-max-widths: (
|
|
69
|
+
sm: 540px,
|
|
70
|
+
md: 720px,
|
|
71
|
+
lg: 960px,
|
|
72
|
+
xl: 1140px,
|
|
73
|
+
xxl: 1352px,
|
|
74
|
+
) !default;
|
|
75
|
+
|
|
76
|
+
$container-padding-x: 3.2rem;
|
|
77
|
+
|
|
78
|
+
// Gutter Grid CSS
|
|
79
|
+
$grid-gutter-width: 2.4rem;
|
|
80
|
+
|
|
81
|
+
$enable-negative-margins: true;
|
|
82
82
|
|
|
83
83
|
// Buttons
|
|
84
84
|
$btn-align-items: center !default;
|
/package/assets/images/emptyscreen/{illu-noContentInFolder.svg → illu-no-content-in-folder.svg}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/images/emptyscreen/{illu-noContentInFolder.svg → illu-no-content-in-folder.svg}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|