File size: 682 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@use './_wp-components-theme-variables' as theme;

@import '@wordpress/base-styles/colors';
@import '@wordpress/base-styles/variables';

.a8c-components-wp-button {
	&.is-secondary:not(:disabled, [aria-disabled="true"], [aria-pressed="true"]) {
		box-shadow: inset 0 0 0 $border-width theme.$components-color-gray-300;

		&:not(.is-destructive) {
			color: theme.$components-color-foreground;
		}
			
		&:hover:not(:disabled, [aria-disabled="true"], :focus) {
			color: theme.$components-color-accent;
			box-shadow: inset 0 0 0 $border-width theme.$components-color-gray-300;
		}
		
		&:active,
		&:active:hover {
			background-color: theme.$components-color-background;
		}
	}
}