Sha256: 039338add99895a8fcd32250f7349ec2d66c78fb259a13ceedcfa533c99404d1

Contents?: true

Size: 1.39 KB

Versions: 1

Compression:

Stored size: 1.39 KB

Contents

@mixin basic-button {
  @include rounded(200px);
  display: inline-block;
  font-weight: bold;
  font-size: 1.0em;
  @include sans-family;
  line-height: 12px;
  margin-right: 3px;
  padding: 7px 16px 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;

  &.disabled {
    opacity: 0.5;
    cursor: default;
  }

}

@mixin default-button {
  @include basic-button;
  background: $primary-color;
  // @include text-shadow(#000);
  // box-shadow: 0 1px 1px rgba(0,0,0,0.10), 0 1px 0 0px rgba(255,255,255, 0.2) inset;
  border: solid 1px #686868;
  color: #efefef;

  &:not(.disabled) {
    &:hover{
      background: darken($primary-color, 10%)
    }

    &:active {
      box-shadow: 0 1px 3px rgba(0,0,0,0.40) inset, 0 1px 0 0px #FFF;
      @include gradient(lighten($primary-color, 8%), darken($primary-color, 17%));
    }
  }
}

@mixin light-button {
  @include basic-button;
  background: $action-button-default-background;
  border: solid 1px #c7c7c7;
  @include border-colors(#d3d3d3, #c7c7c7, #c2c2c2);
  @include text-shadow;
  color: $primary-color;

  &:not(.disabled) {
    &:hover {
      background: $action-button-hover-background;
    }

    &:active {
      box-shadow: 0 1px 2px rgba(0,0,0,0.22) inset, 0 1px 0 0px #EEE;
      @include border-colors(#c2c2c2, #b9b9b9, #b7b7b7);
      background: $action-button-active-background;
    }
  }

}

@mixin dark-button {
  @include default-button;
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
flattened_active_admin-0.0.2 app/assets/stylesheets/flattened_active_admin/mixins/_buttons.css.scss