stipe 0.0.4.9 → 0.0.5.0

Sign up to get free protection for your applications and to get access to all the features.
data/readme.md CHANGED
@@ -12,6 +12,9 @@ To use the Stipe gem, using Bundler `gem 'stipe'`
12
12
  Stipe is a Compass Extension, so Compass is set as a depdency. You will need to include `require 'stipe'` in your config.rb file.
13
13
 
14
14
  # Stipe Changelog
15
+ ## 0.0.5.0
16
+ * Updated stipe manifest to allow for single import
17
+
15
18
  ## 0.0.4.8
16
19
  * Updated typography extends to better minimize headings styles
17
20
 
@@ -21,6 +21,9 @@ $form_field_text_fail: $alpha_color !default;
21
21
  $instructional_text: $charlie_gray !default;
22
22
  $placeholder_text: $hotel_gray !default;
23
23
  $form_label_color: $alpha_gray !default;
24
+ $form_label_weight: bold !default;
25
+ $form_field_height: 3em !default;
26
+ $form_field_padding: 6 !default;
24
27
 
25
28
  @import "forms/mixins";
26
29
  @import "forms/extends";
@@ -0,0 +1,10 @@
1
+ // Following sequence will load the necessary Stipe libraries
2
+ // ------------------------------------------------------------------------------
3
+ @import "media";
4
+ @import "stipe";
5
+ @import "typography";
6
+ @import "grid";
7
+ @import "color";
8
+ @import "gradients";
9
+ @import "forms";
10
+ @import "buttons";
@@ -19,8 +19,9 @@
19
19
  // ------------------------------------------------------------
20
20
  %form_labels {
21
21
  display: block;
22
- font-weight: bold;
22
+ font-weight: $form_label_weight;
23
23
  line-height: em(20);
24
+ color: $form_label_color;
24
25
  span {
25
26
  padding-left: .25em;
26
27
  font-weight: normal;
@@ -1,5 +1,5 @@
1
1
  ////////////// Form mixins ////////////////
2
- @mixin input_fields($height: 3em, $padding: 6, $font-size: $large_point_size) {
2
+ @mixin input_fields($height: $form_field_height, $padding: $form_field_padding, $font-size: $large_point_size) {
3
3
  border: 1px solid $form_field_border;
4
4
  background: $form_field_background_color;
5
5
  font-size: em($font-size);
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stipe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4.9
4
+ version: 0.0.5.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -108,6 +108,7 @@ files:
108
108
  - stylesheets/stipe/color/_color_math.scss
109
109
  - stylesheets/stipe/color/_extends_deprecated.scss
110
110
  - stylesheets/stipe/color/readme.md
111
+ - stylesheets/stipe/_manifest.scss
111
112
  - stylesheets/stipe/_typography.scss
112
113
  - stylesheets/stipe/forms/_mixins.scss
113
114
  - stylesheets/stipe/forms/_extends.scss