| 1 |
.button-primary.warn { |
| 2 |
box-shadow: 0 1px 0 $wp-button-alert-shadow-color; |
| 3 |
text-shadow: 0 -1px 1px $wp-button-alert-shadow-color, 1px 0 1px $wp-button-alert-shadow-color, 0 1px 1px $wp-button-alert-shadow-color, -1px 0 1px $wp-button-alert-shadow-color; |
| 4 |
background: $wp-button-alert-background-color; |
| 5 |
border-color: $wp-button-alert-border-top-color $wp-button-alert-border-color $wp-button-alert-border-color; |
| 6 |
|
| 7 |
&:hover { |
| 8 |
background: $wp-button-alert-hovered-background-color; |
| 9 |
border-color: $wp-button-alert-border-color; |
| 10 |
} |
| 11 |
|
| 12 |
&:focus { |
| 13 |
box-shadow: 0 1px 0 $wp-button-alert-focused-shadow1-color, 0 0 2px 1px $wp-button-alert-focused-shadow2-color; |
| 14 |
} |
| 15 |
|
| 16 |
&:active { |
| 17 |
background: $wp-button-alert-active-background-color; |
| 18 |
border-color: $wp-button-alert-border-color; |
| 19 |
box-shadow: inset 0 2px 0 $wp-button-alert-shadow-color; |
| 20 |
} |
| 21 |
|
| 22 |
&.disabled { |
| 23 |
color: $wp-button-alert-disabled-color !important; |
| 24 |
background: $wp-button-alert-disabled-background-color !important; |
| 25 |
border-color: $wp-button-alert-disabled-border-color !important; |
| 26 |
text-shadow: 0 -1px 0 rgba(0,0,0,.1) !important; |
| 27 |
} |
| 28 |
} |