blob: 045ba0f0c451f1597991ef71811b663bfa96b104 (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
|
$_button-background-color: $action-color;
$_button-background-color-hover: shade($action-color, 20%);
#{$all-buttons} {
appearance: none;
background-color: $_button-background-color;
border: 0;
border-radius: $base-border-radius;
color: contrast-switch($_button-background-color);
cursor: pointer;
display: inline-block;
font-family: $base-font-family;
font-size: 16px;
-webkit-font-smoothing: antialiased;
font-weight: 600;
line-height: 1;
padding: $small-spacing $base-spacing;
text-align: center;
text-decoration: none;
transition: background-color $base-duration $base-timing;
user-select: none;
vertical-align: middle;
white-space: nowrap;
&:focus {
outline: none;
outline-offset: inherit;
}
&:disabled {
cursor: not-allowed;
opacity: 0.5;
&:hover {
background-color: $_button-background-color;
}
}
}
|