benivo-ui-library 1.9.47 → 1.9.48
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/button.less +23 -0
- package/index.js +1 -1
- package/package.json +1 -1
- package/tooltip.less +3 -0
- package/variables.less +1 -1
package/button.less
CHANGED
|
@@ -365,6 +365,29 @@
|
|
|
365
365
|
}
|
|
366
366
|
}
|
|
367
367
|
|
|
368
|
+
&.btn-color-white {
|
|
369
|
+
color: var(--text-600);
|
|
370
|
+
background: var(--white);
|
|
371
|
+
&:hover {
|
|
372
|
+
background: var(--bg-50);
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
&.disabled,
|
|
376
|
+
&.disable,
|
|
377
|
+
&:disabled,
|
|
378
|
+
&[disabled] {
|
|
379
|
+
background: var(--bg-100);
|
|
380
|
+
color: var(--text-600);
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.bn-spinner {
|
|
384
|
+
div {
|
|
385
|
+
border-color: var(--text-600) transparent transparent transparent;
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
}
|
|
390
|
+
|
|
368
391
|
&.btn-color-grey {
|
|
369
392
|
color: var(--text-600);
|
|
370
393
|
background: var(--bg-50);
|