Sha256: f517e76303e3cb9e7a1a624241667ef461c06d2f483f6c4ce9f1a67eb75b2306

Contents?: true

Size: 1.51 KB

Versions: 5

Compression:

Stored size: 1.51 KB

Contents

// input fields
// ------------------------------------------------------------
%input_fields {
  @include input_fields;
}

// disabled input fields
// ------------------------------------------------------------
%disabled_inputs {
  @include disabled_inputs;
}

// form labels 
// ------------------------------------------------------------
%form_labels {
  @include form_labels;
}

// default error
// ------------------------------------------------------------
%fail {
  @include fail;
}

// instructional text
// ------------------------------------------------------------
%instructional {
  @include instructional;
}

// inline form alert UI
// ------------------------------------------------------------
%inline_alert {
  @include inline_alert;
}


// notification alerts / panels 
// ------------------------------------------------------------
// these extend need to be refactored for use
// see mixin as well
%default_alert_panel {
  @include alert_boxes ($alert_background_color, 10, 14, 10);
}

%notification_panel {
  @extend %default_alert_panel;
}

%alert_panel {
  @extend %default_alert_panel;
  background: $alpha_color;
  color: $white;
  font-weight: bold;
}
// these extend need to be refactored for use


// form text 
// ------------------------------------------------------------
// These all need to be refacotred to see if they are really necessary
%note {
  @extend %instructional;
  @include small;
  margin-top: #{5 / $em}em;
}

%informational {
  @extend %instructional;
  line-height: 1.3em;
  margin-bottom: 1em;
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
stipe-0.0.5.5 stylesheets/stipe/forms/_extends.scss
stipe-0.0.5.4 stylesheets/stipe/forms/_extends.scss
stipe-0.0.5.3 stylesheets/stipe/forms/_extends.scss
stipe-0.0.5.2 stylesheets/stipe/forms/_extends.scss
stipe-0.0.5.1 stylesheets/stipe/forms/_extends.scss