Sha256: cb34013e037e8b3acb576a551614ef4887d7ba24af2187ebb41a30fedd32908d

Contents?: true

Size: 1.05 KB

Versions: 85

Compression:

Stored size: 1.05 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,
  &.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;
}

Version data entries

85 entries across 85 versions & 16 rubygems

Version Path
mno-enterprise-frontend-3.4.0 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
mno-enterprise-frontend-3.3.3 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
toronto-0.0.4 vendor/twitter/bootstrap/less/mixins/buttons.less
mno-enterprise-frontend-3.3.2 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
mno-enterprise-frontend-3.2.1 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
mno-enterprise-frontend-3.3.1 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
mno-enterprise-frontend-3.3.0 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
mno-enterprise-frontend-3.2.0 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
mno-enterprise-frontend-3.1.4 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
mno-enterprise-frontend-3.0.7 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
mno-enterprise-frontend-2.0.9 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
toronto-0.0.3 vendor/twitter/bootstrap/less/mixins/buttons.less
toronto-0.0.2 vendor/twitter/bootstrap/less/mixins/buttons.less
toronto-0.0.1 vendor/twitter/bootstrap/less/mixins/buttons.less
mno-enterprise-frontend-3.1.3 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
mno-enterprise-frontend-3.0.6 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
mno-enterprise-frontend-2.0.8 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
mno-enterprise-frontend-3.1.2 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
mno-enterprise-frontend-3.0.5 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less
mno-enterprise-frontend-2.0.7 app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less