mirror of
https://github.com/10h30/yeuchaybo.git
synced 2026-07-11 10:46:17 +09:00
34 lines
570 B
SCSS
34 lines
570 B
SCSS
/* # WooCommerce Disabled Buttons
|
|
---------------------------------------------------------------------------------------------------- */
|
|
|
|
.woocommerce {
|
|
|
|
a.button,
|
|
button.button,
|
|
input.button,
|
|
#respond input#submit {
|
|
|
|
&.disabled,
|
|
&:disabled,
|
|
&:disabled[disabled] {
|
|
padding: 16px 24px;
|
|
color: #fff;
|
|
background-color: #000;
|
|
}
|
|
|
|
&.alt {
|
|
|
|
&.disabled,
|
|
&.disabled:hover,
|
|
&:disabled,
|
|
&:disabled:hover,
|
|
&[disabled]:disabled,
|
|
&[disabled]:disabled:hover {
|
|
padding: 16px 24px;
|
|
color: #fff;
|
|
background-color: #000;
|
|
}
|
|
}
|
|
}
|
|
}
|