@nethserver/ns8-ui-lib 0.0.51 → 0.0.55
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/README.md +1 -1
- package/dist/ns8-ui-lib.esm.js +62 -44
- package/dist/ns8-ui-lib.min.js +1 -1
- package/dist/ns8-ui-lib.ssr.js +81 -67
- package/package.json +1 -1
- package/src/lib-components/NsBackupCardDetails.vue +1 -2
- package/src/lib-components/NsMenuItem.vue +25 -4
- package/src/lib-components/NsPasswordInput.vue +1 -1
- package/src/lib-components/NsProgressBar.vue +4 -4
- package/src/lib-components/NsStatusCard.vue +3 -3
- package/src/lib-components/NsSystemdServiceCard.vue +3 -3
- package/src/lib-components/NsToastNotification.vue +1 -1
|
@@ -90,19 +90,19 @@ export default {
|
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
.success-icon {
|
|
93
|
-
// following rule uses variable color so it's inside core
|
|
93
|
+
// following rule uses variable color so it's inside core _core.scss
|
|
94
94
|
// color: $support-02;
|
|
95
95
|
margin-right: 0.25rem;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
.error-icon {
|
|
99
|
-
// following rule uses variable color so it's inside core
|
|
99
|
+
// following rule uses variable color so it's inside core _core.scss
|
|
100
100
|
// color: $danger-01;
|
|
101
101
|
margin-right: 0.25rem;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
.warning-icon {
|
|
105
|
-
// following rule uses variable color so it's inside core
|
|
105
|
+
// following rule uses variable color so it's inside core _core.scss
|
|
106
106
|
// color: $support-03;
|
|
107
107
|
margin-right: 0.25rem;
|
|
108
108
|
}
|
|
@@ -140,7 +140,7 @@ export default {
|
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
.bx--toast-notification .bx--inline-notification__action-button.bx--btn--ghost {
|
|
143
|
-
// following rule uses branding color so it's inside core
|
|
143
|
+
// following rule uses branding color so it's inside core _core.scss
|
|
144
144
|
// color: $inverse-link;
|
|
145
145
|
margin-left: -16px;
|
|
146
146
|
}
|