From 6db2f0f4b9816ccd271332b89a05a9d0d753216b Mon Sep 17 00:00:00 2001 From: MaZderMind Date: Thu, 26 Feb 2015 17:57:42 +0100 Subject: shuffle things around on the way to a bootstrap-based configurable website --- assets/css/bootstrap-3.3.2/mixins/buttons.less | 52 ++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 assets/css/bootstrap-3.3.2/mixins/buttons.less (limited to 'assets/css/bootstrap-3.3.2/mixins/buttons.less') diff --git a/assets/css/bootstrap-3.3.2/mixins/buttons.less b/assets/css/bootstrap-3.3.2/mixins/buttons.less new file mode 100644 index 0000000..92d8a05 --- /dev/null +++ b/assets/css/bootstrap-3.3.2/mixins/buttons.less @@ -0,0 +1,52 @@ +// Button variants +// +// Easily pump out default styles, as well as :hover, :focus, :active, +// and disabled options for all buttons + +.button-variant(@color; @background; @border) { + color: @color; + background-color: @background; + border-color: @border; + + &:hover, + &:focus, + &.focus, + &:active, + &.active, + .open > .dropdown-toggle& { + color: @color; + background-color: darken(@background, 10%); + border-color: darken(@border, 12%); + } + &:active, + &.active, + .open > .dropdown-toggle& { + background-image: none; + } + &.disabled, + &[disabled], + fieldset[disabled] & { + &, + &:hover, + &:focus, + &.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; + font-size: @font-size; + line-height: @line-height; + border-radius: @border-radius; +} -- cgit v1.2.3