File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -145,9 +145,9 @@ export default defineComponent({
145145 'bg-zurich text-mediumblue': variant !== 'primary' && pressed,
146146 'text-inherit bg-transparent': variant === 'subtle' && !pressed,
147147 'bg-athens text-navy': variant === 'standard' && !pressed,
148- 'hover:bg-blueribbon active:bg-darkblue': variant === 'primary' && !isDisabled,
148+ 'hover:bg-blueribbon active:bg-darkblue': variant === 'primary' && !isDisabled && !pressed ,
149149 'hover:bg-gray hover:text-navy active:bg-zurich active:text-mediumblue':
150- variant !== 'primary' && !isDisabled
150+ variant !== 'primary' && !isDisabled && !pressed
151151 }"
152152 :disabled =" isDisabled"
153153 :aria-label =" ariaLabel"
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export default defineComponent({
7575 :class =" {
7676 'text-mediumblue bg-zurich': checked,
7777 'hover:bg-gray hover:text-navy active:bg-zurich48 active:text-mediumblue':
78- !option.disabled && !disabled,
78+ !option.disabled && !disabled && !checked ,
7979 'opacity-40 cursor-not-allowed': option.disabled || disabled
8080 }"
8181 :aria-label =" option.icon ? option.label : undefined"
You can’t perform that action at this time.
0 commit comments