52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
// Button variants
|
|
// -------------------------
|
|
// Easily pump out default styles, as well as :hover, :focus, :active,
|
|
// and disabled options for all buttons
|
|
.button-variant(@color; @background; @border; @background-hover: @background; @border-hover: @border) {
|
|
color: @color;
|
|
background-color: @background;
|
|
border-color: @border;
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active,
|
|
&.active,
|
|
.open .dropdown-toggle& {
|
|
color: @color;
|
|
background-color: darken(@background-hover, 8%);
|
|
border-color: darken(@border-hover, 12%);
|
|
}
|
|
|
|
&:active,
|
|
&.active,
|
|
.open .dropdown-toggle& {
|
|
background-image: none;
|
|
}
|
|
|
|
&.disabled,
|
|
&[disabled],
|
|
fieldset[disabled] & {
|
|
&,
|
|
&:hover,
|
|
&:focus,
|
|
&:active,
|
|
&.active {
|
|
background-color: @background;
|
|
border-color: @border;
|
|
}
|
|
}
|
|
|
|
.badge {
|
|
color: @background;
|
|
background-color: @color;
|
|
}
|
|
}
|
|
|
|
// Button sizes
|
|
// -------------------------
|
|
.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
|
|
padding: @padding-vertical (@padding-horizontal * 1.5);
|
|
font-size: @font-size;
|
|
line-height: @line-height;
|
|
border-radius: @border-radius;
|
|
} |