@ngx-stoui/core 21.0.3 → 21.0.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/ngx-datatable.css +3 -0
- package/ngx-stoui.css +30 -2
- package/package.json +1 -1
package/ngx-datatable.css
CHANGED
|
@@ -248,6 +248,7 @@
|
|
|
248
248
|
margin: 0;
|
|
249
249
|
top: 0;
|
|
250
250
|
left: 0;
|
|
251
|
+
z-index: 1;
|
|
251
252
|
}
|
|
252
253
|
.sto-mdl-table__progress-bar__container {
|
|
253
254
|
display: block;
|
|
@@ -256,6 +257,7 @@
|
|
|
256
257
|
width: 100%;
|
|
257
258
|
height: 5px;
|
|
258
259
|
transform: translate(0, 0) scale(1, 1);
|
|
260
|
+
background-color: var(--accent-highlight, rgb(170, 209, 249));
|
|
259
261
|
}
|
|
260
262
|
.sto-mdl-table__progress-bar__container__bar {
|
|
261
263
|
position: absolute;
|
|
@@ -266,6 +268,7 @@
|
|
|
266
268
|
height: 5px;
|
|
267
269
|
transition: transform 0.2s linear;
|
|
268
270
|
animation: query 0.8s infinite cubic-bezier(0.39, 0.575, 0.565, 1);
|
|
271
|
+
background-color: var(--primary-resting, rgb(16, 108, 200));
|
|
269
272
|
}
|
|
270
273
|
.sto-mdl-table__body--empty {
|
|
271
274
|
margin: 8px;
|
package/ngx-stoui.css
CHANGED
|
@@ -895,6 +895,7 @@ body {
|
|
|
895
895
|
margin: 0;
|
|
896
896
|
top: 0;
|
|
897
897
|
left: 0;
|
|
898
|
+
z-index: 1;
|
|
898
899
|
}
|
|
899
900
|
.sto-mdl-table__progress-bar__container {
|
|
900
901
|
display: block;
|
|
@@ -903,6 +904,7 @@ body {
|
|
|
903
904
|
width: 100%;
|
|
904
905
|
height: 5px;
|
|
905
906
|
transform: translate(0, 0) scale(1, 1);
|
|
907
|
+
background-color: var(--accent-highlight, rgb(170, 209, 249));
|
|
906
908
|
}
|
|
907
909
|
.sto-mdl-table__progress-bar__container__bar {
|
|
908
910
|
position: absolute;
|
|
@@ -913,6 +915,7 @@ body {
|
|
|
913
915
|
height: 5px;
|
|
914
916
|
transition: transform 0.2s linear;
|
|
915
917
|
animation: query 0.8s infinite cubic-bezier(0.39, 0.575, 0.565, 1);
|
|
918
|
+
background-color: var(--primary-resting, rgb(16, 108, 200));
|
|
916
919
|
}
|
|
917
920
|
.sto-mdl-table__body--empty {
|
|
918
921
|
margin: 8px;
|
|
@@ -2618,11 +2621,36 @@ body,
|
|
|
2618
2621
|
.sto-datatable .datatable-header .datatable-header-column-group .datatable-header-cell {
|
|
2619
2622
|
border-left: var(--mat-table-row-item-outline-width, 1px) solid var(--mat-table-row-item-outline-color, var(--divider));
|
|
2620
2623
|
}
|
|
2624
|
+
.sto-datatable .datatable-body .progress-linear {
|
|
2625
|
+
display: block;
|
|
2626
|
+
position: sticky;
|
|
2627
|
+
width: 100%;
|
|
2628
|
+
height: 5px;
|
|
2629
|
+
padding: 0;
|
|
2630
|
+
margin: 0;
|
|
2631
|
+
top: 0;
|
|
2632
|
+
left: 0;
|
|
2633
|
+
z-index: 1;
|
|
2634
|
+
}
|
|
2621
2635
|
.sto-datatable .datatable-body .progress-linear .container {
|
|
2622
|
-
|
|
2636
|
+
display: block;
|
|
2637
|
+
position: relative;
|
|
2638
|
+
overflow: hidden;
|
|
2639
|
+
width: 100%;
|
|
2640
|
+
height: 5px;
|
|
2641
|
+
transform: translate(0, 0) scale(1, 1);
|
|
2642
|
+
background-color: var(--accent-highlight, rgb(170, 209, 249));
|
|
2623
2643
|
}
|
|
2624
2644
|
.sto-datatable .datatable-body .progress-linear .container .bar {
|
|
2625
|
-
|
|
2645
|
+
position: absolute;
|
|
2646
|
+
left: 0;
|
|
2647
|
+
top: 0;
|
|
2648
|
+
bottom: 0;
|
|
2649
|
+
width: 100%;
|
|
2650
|
+
height: 5px;
|
|
2651
|
+
transition: transform 0.2s linear;
|
|
2652
|
+
animation: query 0.8s infinite cubic-bezier(0.39, 0.575, 0.565, 1);
|
|
2653
|
+
background-color: var(--primary-resting, rgb(16, 108, 200));
|
|
2626
2654
|
}
|
|
2627
2655
|
.sto-datatable .datatable-body .datatable-body-row {
|
|
2628
2656
|
color: var(--mat-table-row-item-label-text-color, var(--text));
|