Sha256: 8a578b26368652f69053b245983bf47c9a0e3f789af4b7d0baae341416eb12a6

Contents?: true

Size: 1.03 KB

Versions: 37

Compression:

Stored size: 1.03 KB

Contents

// 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,
  &: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
.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;
}

Version data entries

37 entries across 37 versions & 9 rubygems

Version Path
kms-0.9.0 vendor/assets/bower_components/bootstrap/less/mixins/buttons.less
kms-0.8.0 vendor/assets/bower_components/bootstrap/less/mixins/buttons.less
kms-0.7.0 vendor/assets/bower_components/bootstrap/less/mixins/buttons.less
kms-0.6.0 vendor/assets/bower_components/bootstrap/less/mixins/buttons.less
kms-0.5.0 vendor/assets/bower_components/bootstrap/less/mixins/buttons.less
kms-0.4.2 vendor/assets/bower_components/bootstrap/less/mixins/buttons.less
agile-proxy-0.1.24 assets/ui/bower_components/bootstrap/less/mixins/buttons.less
agile-proxy-0.1.23 assets/ui/bower_components/bootstrap/less/mixins/buttons.less
agile-proxy-0.1.22 assets/ui/bower_components/bootstrap/less/mixins/buttons.less
agile-proxy-0.1.21 assets/ui/bower_components/bootstrap/less/mixins/buttons.less
agile-proxy-0.1.20 assets/ui/bower_components/bootstrap/less/mixins/buttons.less
agile-proxy-0.1.19 assets/ui/bower_components/bootstrap/less/mixins/buttons.less
agile-proxy-0.1.18 assets/ui/bower_components/bootstrap/less/mixins/buttons.less
agile-proxy-0.1.13 assets/ui/bower_components/bootstrap/less/mixins/buttons.less
agile-proxy-0.1.12 assets/ui/bower_components/bootstrap/less/mixins/buttons.less
agile-proxy-0.1.11 assets/ui/bower_components/bootstrap/less/mixins/buttons.less
agile-proxy-0.1.10 assets/ui/bower_components/bootstrap/less/mixins/buttons.less
agile-proxy-0.1.9 assets/ui/bower_components/bootstrap/less/mixins/buttons.less
agile-proxy-0.1.8 assets/ui/bower_components/bootstrap/less/mixins/buttons.less
agile-proxy-0.1.7 assets/ui/bower_components/bootstrap/less/mixins/buttons.less