diff options
Diffstat (limited to 'src/objects/_action-button.scss')
-rw-r--r-- | src/objects/_action-button.scss | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/objects/_action-button.scss b/src/objects/_action-button.scss index f4a9a46..c997679 100644 --- a/src/objects/_action-button.scss +++ b/src/objects/_action-button.scss | |||
@@ -53,30 +53,30 @@ | |||
53 | } | 53 | } |
54 | 54 | ||
55 | @include bem.modifier('static') { | 55 | @include bem.modifier('static') { |
56 | color: props.get($theme, list.join($key, --quiet --hover --label-color)...); | 56 | color: props.get($theme, list.join($key, --static --label-color)...); |
57 | background-color: props.get($theme, list.join($key, --quiet --hover --bg-color)...); | 57 | background-color: props.get($theme, list.join($key, --static --bg-color)...); |
58 | border-color: transparent; | 58 | border-color: props.get($theme, list.join($key, --static --border-color)...); |
59 | box-shadow: none; | 59 | box-shadow: none; |
60 | 60 | ||
61 | &:link, | 61 | &:link, |
62 | &:visited, | 62 | &:visited, |
63 | &:enabled { | 63 | &:enabled { |
64 | color: props.get($theme, list.join($key, --quiet --hover --label-color)...); | 64 | color: props.get($theme, list.join($key, --static --label-color)...); |
65 | background-color: props.get($theme, list.join($key, --quiet --hover --bg-color)...); | 65 | background-color: props.get($theme, list.join($key, --static --bg-color)...); |
66 | border-color: transparent; | 66 | border-color: props.get($theme, list.join($key, --static --border-color)...); |
67 | box-shadow: none; | 67 | box-shadow: none; |
68 | 68 | ||
69 | &:hover, | 69 | &:hover, |
70 | &:focus-visible { | 70 | &:focus-visible { |
71 | color: props.get($theme, list.join($key, --quiet --active --label-color)...); | 71 | color: props.get($theme, list.join($key, --static --hover --label-color)...); |
72 | background-color: props.get($theme, list.join($key, --quiet --active --bg-color)...); | 72 | background-color: props.get($theme, list.join($key, --static --hover --bg-color)...); |
73 | border-color: transparent; | 73 | border-color: props.get($theme, list.join($key, --static --hover --border-color)...); |
74 | } | 74 | } |
75 | 75 | ||
76 | &:active { | 76 | &:active { |
77 | color: props.get($theme, list.join($key, --quiet --active --label-color)...); | 77 | color: props.get($theme, list.join($key, --static --active --label-color)...); |
78 | background-color: props.get($theme, list.join($key, --quiet --active --bg-color)...); | 78 | background-color: props.get($theme, list.join($key, --static --active --bg-color)...); |
79 | border-color: transparent; | 79 | border-color: props.get($theme, list.join($key, --static --active --border-color)...); |
80 | } | 80 | } |
81 | } | 81 | } |
82 | } | 82 | } |