Sha256: 427507795c4b43f17777f44585be1bebe803cd92d070cfdb4f8bf0b50149024c

Contents?: true

Size: 1.11 KB

Versions: 7

Compression:

Stored size: 1.11 KB

Contents

// All buttons

input[type=submit],
button[type=button],
.add-button,
.button {
  border-radius: 3px;
  display: inline-block;
  font-size: 13px;
  cursor: pointer;
  padding: 11px 14px;
  border: 1px solid transparent;
  line-height: 1;
}

// Dark buttons

input[type=submit],
.add-button {
  @include gradient-vertical($start-color: $c-dark-button-gradient-start, $end-color: $c-dark-button-gradient-end);
  color: $c-dark-button;
  border-color: $c-dark-button-gradient-start;

  &:hover {
    background: $c-dark-button-gradient-end;
    color: $c-white;
  }
}

.add-button {
  &:before {
    @extend .icon-heavy_plus:before;
    @include icon-stuff;
    font-size: 12px;
    margin-right: 7px;
  }
}

// Light buttons

button[type=button],
.button {
  @include gradient-vertical($start-color: $c-light-button-gradient-start, $end-color: $c-light-button-gradient-end);
  color: $c-light-button;
  border-color: $c-border;

  &:hover {
    background: $c-light-button-gradient-end;
  }
}

.button {
  &.-small {
    padding: 5px 10px;
    font-size: 12px;
    margin: 3px;

    &:hover {
      color: $c-light-button;
    }
  }
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fae-rails-1.6.0 app/assets/stylesheets/fae/modules/_buttons.scss
fae-rails-1.5.1 app/assets/stylesheets/fae/modules/_buttons.scss
fae-rails-1.5.0 app/assets/stylesheets/fae/modules/_buttons.scss
fae-rails-1.4.1 app/assets/stylesheets/fae/modules/_buttons.scss
fae-rails-1.4.0 app/assets/stylesheets/fae/modules/_buttons.scss
fae-rails-1.3.1 app/assets/stylesheets/fae/modules/_buttons.scss
fae-rails-1.3.0 app/assets/stylesheets/fae/modules/_buttons.scss