2018-12-12 10:34:39 +00:00
|
|
|
//
|
|
|
|
// Button
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
.btn {
|
2023-10-18 12:16:08 +00:00
|
|
|
font: {
|
|
|
|
family: inherit;
|
|
|
|
size: inherit;
|
|
|
|
}
|
|
|
|
line-height: inherit;
|
|
|
|
color: inherit;
|
|
|
|
text-align: center;
|
|
|
|
-moz-appearance: toolbarbutton;
|
2018-12-12 10:34:39 +00:00
|
|
|
|
2023-10-18 12:16:08 +00:00
|
|
|
&[disabled],
|
|
|
|
&.disabled {
|
|
|
|
opacity: $btn-disabled-opacity;
|
|
|
|
}
|
2018-12-12 10:34:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-icon {
|
2023-10-18 12:16:08 +00:00
|
|
|
.icon {
|
|
|
|
svg, img {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
span.menu-marker {
|
|
|
|
-moz-appearance: toolbarbutton-dropdown;
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
2018-12-12 10:34:39 +00:00
|
|
|
}
|
|
|
|
|