Sha256: a9b0b389c51c3366af7c79cbc0fbea1d836ae41a5203c8b0aebc5f92d00aed01

Contents?: true

Size: 1.52 KB

Versions: 1

Compression:

Stored size: 1.52 KB

Contents

%text-overflow {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  -moz-text-overflow: ellipsis;
}

%thumbnail-background {
  position: relative;
  display: table-cell;
  background-color: $dark-gray;
  text-align: center;
  vertical-align: middle;
  padding: 0;
  line-height: 0;
}

%field-with-error {
  border-color: $error_border_color;
  color: $error_text_color;
  background-color: lighten($error_background_color, 8%);
  box-shadow: inset 1px 1px 4px rgba($error_border_color, 0.5);
}

%blue-focus-style {
  @include default-focus-style;
}

%default-input-style {
  border-radius: $default-border-radius;
  box-shadow: $form-field-box-shadow;
  font: $default-font-style;
  color: $form-field-text-color;
  padding: $form-field-padding;
  margin: $form-field-margin;
  background: $form-field-background-color;
  border-width: $form-field-border-width;
  border-style: $form-field-border-style;
  border-color: $form-field-border-color;
  width: 100%;
  font-size: $form-field-font-size;
  line-height: $form-field-line-height;
  transition-property: box-shadow, background-color, border;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;

  &:focus {
    @extend %blue-focus-style;
  }

  &[disabled], .disabled {
    color: $form-field-disabled-text-color;
    background-color: $form-field-disabled-bg-color;
    cursor: not-allowed;
  }
}

%gradiated-toolbar {
  background: $toolbar-bg-color;
  padding: 8px 4px;
  height: $toolbar-height;
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
alchemy_cms-4.1.0.beta app/assets/stylesheets/alchemy/_extends.scss