@nuvoui/core 1.5.1 → 1.5.2
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/nuvoui.css +6 -4
- package/dist/nuvoui.css.map +1 -1
- package/dist/nuvoui.min.css +1 -1
- package/dist/nuvoui.min.css.map +1 -1
- package/package.json +8 -8
- package/src/styles/base/_base.scss +1 -1
- package/src/styles/components/_tooltips.scss +1 -1
- package/src/styles/functions/_colors.scss +26 -5
- package/src/styles/functions/_math.scss +21 -5
- package/src/styles/layouts/_container.scss +2 -4
- package/src/styles/utilities/_animations.scss +16 -4
- package/src/styles/utilities/_backdrop-filters.scss +4 -1
- package/src/styles/utilities/_colors.scss +4 -1
- package/src/styles/utilities/_typography.scss +4 -1
- package/src/styles/utilities/_z-index.scss +4 -1
package/dist/nuvoui.css
CHANGED
|
@@ -187,8 +187,6 @@
|
|
|
187
187
|
font-family: var(--font-family-base);
|
|
188
188
|
cursor: pointer;
|
|
189
189
|
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
|
190
|
-
background-color: var(--button-bg-color, #007bff);
|
|
191
|
-
color: var(--button-text-color, #fff);
|
|
192
190
|
}
|
|
193
191
|
button:focus {
|
|
194
192
|
outline: none;
|
|
@@ -198,6 +196,10 @@
|
|
|
198
196
|
color: #a0a0a0;
|
|
199
197
|
cursor: not-allowed;
|
|
200
198
|
}
|
|
199
|
+
button {
|
|
200
|
+
background-color: var(--button-bg-color, #007bff);
|
|
201
|
+
color: var(--button-text-color, #fff);
|
|
202
|
+
}
|
|
201
203
|
button:hover {
|
|
202
204
|
background-color: var(--button-bg-color-hover, #0056b3);
|
|
203
205
|
}
|
|
@@ -279,7 +281,7 @@
|
|
|
279
281
|
padding: 0 !important;
|
|
280
282
|
margin: -1px !important;
|
|
281
283
|
overflow: hidden !important;
|
|
282
|
-
clip:
|
|
284
|
+
clip-path: inset(50%) !important;
|
|
283
285
|
white-space: nowrap !important;
|
|
284
286
|
border: 0 !important;
|
|
285
287
|
}
|
|
@@ -3330,7 +3332,7 @@
|
|
|
3330
3332
|
|
|
3331
3333
|
@layer components {
|
|
3332
3334
|
:root {
|
|
3333
|
-
--tooltip-bg:
|
|
3335
|
+
--tooltip-bg: rgb(17 17 17 / 90%);
|
|
3334
3336
|
--tooltip-shadow-color: rgb(0 0 0 / 20%);
|
|
3335
3337
|
--tooltip-text-color: #fff;
|
|
3336
3338
|
--microtip-transition-duration: 0.18s;
|