From 5d8615a958b20c59a7ed00be0aa2ef8f2f9cc233 Mon Sep 17 00:00:00 2001 From: "Moritz Kaspar Rudert (mortzu)" Date: Mon, 8 Sep 2014 08:16:09 +0200 Subject: moved external libraries into gitmodules --- vendor/bootstrap-3.2.0/mixins/_buttons.scss | 50 ----------------------------- 1 file changed, 50 deletions(-) delete mode 100644 vendor/bootstrap-3.2.0/mixins/_buttons.scss (limited to 'vendor/bootstrap-3.2.0/mixins/_buttons.scss') diff --git a/vendor/bootstrap-3.2.0/mixins/_buttons.scss b/vendor/bootstrap-3.2.0/mixins/_buttons.scss deleted file mode 100644 index 58ad13e5..00000000 --- a/vendor/bootstrap-3.2.0/mixins/_buttons.scss +++ /dev/null @@ -1,50 +0,0 @@ -// Button variants -// -// Easily pump out default styles, as well as :hover, :focus, :active, -// and disabled options for all buttons - -@mixin button-variant($color, $background, $border) { - color: $color; - background-color: $background; - border-color: $border; - - &:hover, - &: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, - &:active, - &.active { - background-color: $background; - border-color: $border; - } - } - - .badge { - color: $background; - background-color: $color; - } -} - -// Button sizes -@mixin 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-54-g00ecf