@redseed/redseed-ui-vue3 1.5.4 → 1.5.5
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/package.json
CHANGED
|
@@ -26,15 +26,15 @@ const buttonClass = computed(() => [
|
|
|
26
26
|
<style lang="scss" scoped>
|
|
27
27
|
.button-tertiary {
|
|
28
28
|
// default colors
|
|
29
|
-
@apply bg-white text-
|
|
29
|
+
@apply bg-white text-default-black ring-tertiary-dark/20 border-tertiary-dark;
|
|
30
30
|
// default hover state
|
|
31
|
-
@apply hover:bg-white hover:text-tertiary hover:border-tertiary;
|
|
31
|
+
@apply hover:bg-white hover:text-tertiary-dark hover:border-tertiary-dark;
|
|
32
32
|
// default focus state
|
|
33
33
|
@apply focus-visible:border-transparent focus-visible:text-tertiary;
|
|
34
34
|
// default active state
|
|
35
|
-
@apply active:ring-0 active:text-tertiary
|
|
35
|
+
@apply active:ring-0 active:text-tertiary active:border-tertiary active:bg-white;
|
|
36
36
|
// default disabled state
|
|
37
|
-
@apply disabled:text-tertiary
|
|
37
|
+
@apply disabled:text-tertiary/40 disabled:border-tertiary/40 disabled:bg-white;
|
|
38
38
|
@apply disabled:active:ring-0 disabled:focus:ring-0;
|
|
39
39
|
}
|
|
40
40
|
</style>
|