mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-19 20:34:01 +00:00
28 lines
626 B
SCSS
Vendored
28 lines
626 B
SCSS
Vendored
.vue-form-wizard .wizard-btn {
|
|
display: inline-block;
|
|
margin-bottom: 0; // For input.btn
|
|
font-weight: $btn-font-weight;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
touch-action: manipulation;
|
|
cursor: pointer;
|
|
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
|
|
border: 1px solid transparent;
|
|
white-space: nowrap;
|
|
//@include user-select(none);
|
|
@include border-radius($border-radius);
|
|
|
|
&.disabled,
|
|
&[disabled],
|
|
fieldset[disabled] & {
|
|
cursor: not-allowed;
|
|
opacity: .65;
|
|
@include box-shadow(none);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|