@itfin/components 1.2.90 → 1.2.91
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/package.json +1 -1
- package/src/assets/scss/_bootstrap.scss +34 -0
- package/src/assets/scss/_css_variables.scss +1 -0
- package/src/assets/scss/_variables.scss +1 -36
- package/src/assets/scss/components/pdf-viewer/_colors.scss +1 -0
- package/src/assets/scss/directives/tooltip.scss +1 -0
- package/src/components/pdf-viewer/styles/_colors.scss +1 -0
package/package.json
CHANGED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// Include functions first (so you can manipulate colors, SVGs, calc, etc)
|
|
2
|
+
@import "~bootstrap/scss/functions.scss";
|
|
3
|
+
|
|
4
|
+
// Include remainder of required Bootstrap stylesheets
|
|
5
|
+
@import "~bootstrap/scss/variables.scss";
|
|
6
|
+
@import "~bootstrap/scss/mixins.scss";
|
|
7
|
+
@import "~bootstrap/scss/maps.scss";
|
|
8
|
+
@import "~bootstrap/scss/utilities.scss";
|
|
9
|
+
|
|
10
|
+
$custom-colors: (
|
|
11
|
+
"white": #fff,
|
|
12
|
+
"black": #1e1e1e
|
|
13
|
+
);
|
|
14
|
+
$theme-colors: map-merge($theme-colors, $custom-colors);
|
|
15
|
+
|
|
16
|
+
// Text colors
|
|
17
|
+
$all-colors: map-merge-multiple($theme-colors, $custom-colors, $blues, $indigos, $purples, $pinks, $reds, $oranges, $yellows, $greens, $teals, $cyans);
|
|
18
|
+
$utilities: map-merge(
|
|
19
|
+
$utilities,
|
|
20
|
+
(
|
|
21
|
+
"color": map-merge(
|
|
22
|
+
map-get($utilities, "color"),
|
|
23
|
+
(
|
|
24
|
+
values: map-merge(
|
|
25
|
+
map-get(map-get($utilities, "color"), "values"),
|
|
26
|
+
(
|
|
27
|
+
$all-colors
|
|
28
|
+
),
|
|
29
|
+
),
|
|
30
|
+
),
|
|
31
|
+
),
|
|
32
|
+
)
|
|
33
|
+
);
|
|
34
|
+
//@import "~bootstrap/scss/utilities/api"; // створює дублікати класів, які вже є в bootstrap
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
//
|
|
2
|
-
@import "~bootstrap/scss/functions.scss";
|
|
3
|
-
|
|
4
|
-
// 2. Include any default variable overrides here
|
|
1
|
+
// Include any default variable overrides here
|
|
5
2
|
$font-family-base: 'Fira Sans', sans-serif;
|
|
6
3
|
$headings-font-family: 'Fira Sans', sans-serif;
|
|
7
4
|
$font-family-monospace: "Fira Mono", "Courier New", monospace;
|
|
@@ -76,38 +73,6 @@ $dark-input-focus-border: rgb(244 206 176 / 25%);
|
|
|
76
73
|
|
|
77
74
|
$pagination-border-width: 0;
|
|
78
75
|
|
|
79
|
-
// 3. Include remainder of required Bootstrap stylesheets
|
|
80
|
-
@import "~bootstrap/scss/variables.scss";
|
|
81
|
-
@import "~bootstrap/scss/mixins.scss";
|
|
82
|
-
@import "~bootstrap/scss/maps.scss";
|
|
83
|
-
@import "~bootstrap/scss/utilities.scss";
|
|
84
|
-
|
|
85
|
-
$custom-colors: (
|
|
86
|
-
"white": #fff,
|
|
87
|
-
"black": #1e1e1e
|
|
88
|
-
);
|
|
89
|
-
$theme-colors: map-merge($theme-colors, $custom-colors);
|
|
90
|
-
|
|
91
|
-
// Text colors
|
|
92
|
-
$all-colors: map-merge-multiple($theme-colors, $custom-colors, $blues, $indigos, $purples, $pinks, $reds, $oranges, $yellows, $greens, $teals, $cyans);
|
|
93
|
-
$utilities: map-merge(
|
|
94
|
-
$utilities,
|
|
95
|
-
(
|
|
96
|
-
"color": map-merge(
|
|
97
|
-
map-get($utilities, "color"),
|
|
98
|
-
(
|
|
99
|
-
values: map-merge(
|
|
100
|
-
map-get(map-get($utilities, "color"), "values"),
|
|
101
|
-
(
|
|
102
|
-
$all-colors
|
|
103
|
-
),
|
|
104
|
-
),
|
|
105
|
-
),
|
|
106
|
-
),
|
|
107
|
-
)
|
|
108
|
-
);
|
|
109
|
-
@import "~bootstrap/scss/utilities/api";
|
|
110
|
-
|
|
111
76
|
// Fonts
|
|
112
77
|
$baseFontSize: 16px;
|
|
113
78
|
$hintFontSize: 12px;
|