@kingsimba/nc-ui 0.1.10 → 0.1.11
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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/styles.css +21 -4
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -414,6 +414,7 @@ li::marker { color: var(--nc-text-weak); }
|
|
|
414
414
|
.nc-icon-button-edit:hover { background: var(--nc-primary); color: white; }
|
|
415
415
|
|
|
416
416
|
/* Trash button variant */
|
|
417
|
+
.nc-icon-button-trash { color: var(--nc-danger); }
|
|
417
418
|
.nc-icon-button-trash:hover { background: var(--nc-danger); color: white; }
|
|
418
419
|
|
|
419
420
|
/* Spinning animation for refresh icon */
|
|
@@ -869,6 +870,26 @@ input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
|
|
|
869
870
|
padding-bottom: 4px;
|
|
870
871
|
}
|
|
871
872
|
|
|
873
|
+
.nc-tab-panels {
|
|
874
|
+
display: flex;
|
|
875
|
+
flex-direction: column;
|
|
876
|
+
flex: 1;
|
|
877
|
+
min-height: 0;
|
|
878
|
+
overflow: auto;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
.nc-tab-panel {
|
|
882
|
+
height: 100%;
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
.nc-tab-panel-wrapper {
|
|
886
|
+
display: flex;
|
|
887
|
+
flex-direction: column;
|
|
888
|
+
flex: 1;
|
|
889
|
+
min-height: 0;
|
|
890
|
+
height: 100%;
|
|
891
|
+
}
|
|
892
|
+
|
|
872
893
|
/* Toggle component */
|
|
873
894
|
.nc-toggle {
|
|
874
895
|
position: relative;
|
|
@@ -1406,7 +1427,3 @@ input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
|
|
|
1406
1427
|
padding-top: 8px;
|
|
1407
1428
|
border-top: 1px solid var(--nc-border);
|
|
1408
1429
|
}
|
|
1409
|
-
|
|
1410
|
-
.nc-tab-panel-wrapper {
|
|
1411
|
-
height: 100%;
|
|
1412
|
-
}
|