stipe 0.0.4.2 → 0.0.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,6 +32,8 @@ $heading_color: $primary_header_color !default;
32
32
  // $primary_header_color == set in Stip /stipe/color/_default_color_pallet.scss
33
33
  // override using Toadstool _config.scss
34
34
 
35
+ // $webfont_directory: "/fonts/" !default;
36
+
35
37
 
36
38
  //// !do not edit! ////
37
39
  $em: $font_size; // $em ALWAYS == $font-size
@@ -27,7 +27,7 @@
27
27
 
28
28
 
29
29
 
30
- @mixin alert_boxes ($background_color, $padding_tb, $padding_l, $padding_r, $margin_bottom: 0) {
30
+ @mixin alert_boxes ($background_color, $padding_tb: $grid_padding_tb, $padding_l: $grid_padding_l, $padding_r: $grid_padding_r, $margin_bottom: 0) {
31
31
  background-color: $background_color;
32
32
  @include grid(12.25, $grid_uom:combo, $grid_child: alphaomega, $grid_padding_l: $padding_l, $grid_padding_r: $padding_r);
33
33
  padding-top: #{$padding_tb / $em}em;
@@ -7,7 +7,7 @@
7
7
  // Do not enter combination values such as '36em'
8
8
 
9
9
  $border_place: '';
10
- @mixin grid($col_count: $col_count, $grid_child: $grid_child, $grid_padding_l: $grid_padding_l, $grid_padding_r: $grid_padding_r, $grid_padding_tb: $grid_padding_tb, $grid_border: $grid_border, $grid_uom: $grid_uom, $col_gutter: $col_gutter, $grid_type: $grid_type, $grid_align: $grid_align, $grid_context: $grid_context, $border_color: $border_color, $border_place: $border_place) {
10
+ @mixin grid($col_count, $grid_child: $grid_child, $grid_padding_l: $grid_padding_l, $grid_padding_r: $grid_padding_r, $grid_padding_tb: $grid_padding_tb, $grid_border: $grid_border, $grid_uom: $grid_uom, $col_gutter: $col_gutter, $grid_type: $grid_type, $grid_align: $grid_align, $grid_context: $grid_context, $border_color: $border_color, $border_place: $border_place) {
11
11
 
12
12
  @if $grid_type == 12 {
13
13
  $col_width: 80 - $col_gutter;
@@ -37,13 +37,13 @@ $iblur: 3 !default; // inset blur
37
37
  $shadow: em($h-shadow) em($v-shadow) em($blur);
38
38
  $inset_shadow: em($ih-shadow) em($iv-shadow) em($iblur) em($is-shadow);
39
39
 
40
- @mixin box_shadow ($shadow_color, $shadow, $prefixes: $prefix_defaults) {
40
+ @mixin box_shadow ($shadow_color: $shadow_color, $shadow: $shadow, $prefixes: $prefix_defaults) {
41
41
  @each $prefix in $prefixes {
42
42
  #{$prefix}box-shadow: $shadow_color $shadow;
43
43
  }
44
44
  }
45
45
 
46
- @mixin dual_box_shadow ($shadow_color, $shadow, $inset_color, $inset_shadow, $prefixes: $prefix_defaults) {
46
+ @mixin dual_box_shadow ($shadow_color: $shadow_color, $shadow: $shadow, $inset_color: $inset_color, $inset_shadow: $inset_shadow, $prefixes: $prefix_defaults) {
47
47
  @each $prefix in $prefixes {
48
48
  #{$prefix}box-shadow: $shadow_color $shadow, inset $inset_color $inset_shadow;
49
49
  }
@@ -82,7 +82,7 @@ $inset_shadow: em($ih-shadow) em($iv-shadow) em($iblur) em($is-shadow);
82
82
 
83
83
  /////// input_placeholder arguments /////////
84
84
  // --------------------------------------
85
- @mixin input_placeholder ($placeholder_color: $placeholder_color) {
85
+ @mixin input_placeholder ($placeholder_color: $placeholder_text) {
86
86
  &::-webkit-input-placeholder {
87
87
  color: $placeholder_color;
88
88
  }
@@ -99,7 +99,7 @@ $inset_shadow: em($ih-shadow) em($iv-shadow) em($iblur) em($is-shadow);
99
99
 
100
100
  ////////// style placeholder text //////////
101
101
  // deprecation alert!!!! this mixin will be deleted in future releases //
102
- @mixin placeholder_styles ($color) {
102
+ @mixin placeholder_styles ($color: $placeholder_text) {
103
103
  color: $color;
104
104
  }
105
105
 
@@ -71,9 +71,10 @@ $webfont_font_family: zocial !default;
71
71
  $webfont-file: zocial-regular-webfont !default;
72
72
  $webfont_weight: normal !default;
73
73
  $webfont_style: normal !default;
74
+ $webfont_directory: "/fonts/" !default;
74
75
 
75
76
 
76
- @mixin font-face($font_family: $webfont_font_family, $font-file: $webfont-file, $font_weight: $webfont_weight, $font_style: $webfont_style ) {
77
+ @mixin font-face($font_family: $webfont_font_family, $font-file: $webfont-file, $font_weight: $webfont_weight, $font_style: $webfont_style, $webfont_directory: $webfont_directory ) {
77
78
  font-family: '#{$font_family}';
78
79
  font-style: $font_style;
79
80
  font-weight: $font_weight;
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.2
4
+ version: 0.0.4.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2012-10-11 00:00:00.000000000 Z
13
+ date: 2012-10-12 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: compass