@ngx-stoui/core 21.0.5 → 21.0.6
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/ngx-stoui.css +4 -2
- package/package.json +4 -1
- package/styles/toolbox-grid/_toolbox-grid.scss +789 -0
- package/toolbox-grid.css +741 -0
package/ngx-stoui.css
CHANGED
|
@@ -152,10 +152,11 @@ span.spacer {
|
|
|
152
152
|
|
|
153
153
|
html,
|
|
154
154
|
body {
|
|
155
|
-
font:
|
|
155
|
+
font-family: var(--application-font);
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
body {
|
|
159
|
+
font: 400 13px/20px var(--application-font);
|
|
159
160
|
margin-left: 0;
|
|
160
161
|
margin-right: 0;
|
|
161
162
|
}
|
|
@@ -2385,6 +2386,7 @@ span.sortable {
|
|
|
2385
2386
|
--mat-progress-bar-active-indicator-height: 4px;
|
|
2386
2387
|
--mat-progress-bar-track-color: var(--bg-app);
|
|
2387
2388
|
--mat-progress-bar-track-height: 4px;
|
|
2389
|
+
--mat-slider-label-label-text-size: 0.6rem;
|
|
2388
2390
|
}
|
|
2389
2391
|
|
|
2390
2392
|
.sto-sm-typography {
|
|
@@ -2393,7 +2395,7 @@ span.sortable {
|
|
|
2393
2395
|
}
|
|
2394
2396
|
|
|
2395
2397
|
.sto-m-typography {
|
|
2396
|
-
font: 400 13px/
|
|
2398
|
+
font: 400 13px/20px var(--application-font);
|
|
2397
2399
|
}
|
|
2398
2400
|
|
|
2399
2401
|
.sto-l-typography {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ngx-stoui/core",
|
|
3
|
-
"version": "21.0.
|
|
3
|
+
"version": "21.0.6",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Ronnie Laugen",
|
|
6
6
|
"email": "rhenri@equinor.com"
|
|
@@ -39,6 +39,9 @@
|
|
|
39
39
|
"./ngx-datatable.css": {
|
|
40
40
|
"default": "./ngx-datatable.css"
|
|
41
41
|
},
|
|
42
|
+
"./toolbox-grid.css": {
|
|
43
|
+
"default": "./toolbox-grid.css"
|
|
44
|
+
},
|
|
42
45
|
"./package.json": {
|
|
43
46
|
"default": "./package.json"
|
|
44
47
|
}
|