@redseed/redseed-ui-vue3 4.1.0 → 4.1.1
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
|
@@ -9,15 +9,15 @@ import ButtonSlot from './ButtonSlot.vue'
|
|
|
9
9
|
<style lang="scss" scoped>
|
|
10
10
|
.rsui-button-tertiary {
|
|
11
11
|
// default colors
|
|
12
|
-
@apply text-rsui-grey-700 bg-
|
|
12
|
+
@apply text-rsui-grey-700 bg-transparent border-transparent;
|
|
13
13
|
// default hover state
|
|
14
14
|
@apply hover:text-rsui-grey-900 hover:bg-rsui-grey-200 hover:border-transparent;
|
|
15
15
|
// default focus state
|
|
16
16
|
@apply focus-visible:ring-rsui-grey-400 focus-visible:border-transparent;
|
|
17
17
|
// default active state
|
|
18
|
-
@apply active:bg-
|
|
18
|
+
@apply active:bg-transparent active:border-transparent;
|
|
19
19
|
// default disabled state
|
|
20
|
-
@apply disabled:bg-
|
|
21
|
-
@apply disabled:active:bg-
|
|
20
|
+
@apply disabled:bg-transparent disabled:border-transparent disabled:text-rsui-grey-400;
|
|
21
|
+
@apply disabled:active:bg-transparent disabled:active:border-transparent;
|
|
22
22
|
}
|
|
23
23
|
</style>
|