stipe 0.0.4.1 → 0.0.4.2
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.
@@ -29,7 +29,7 @@
|
|
29
29
|
|
30
30
|
@mixin alert_boxes ($background_color, $padding_tb, $padding_l, $padding_r, $margin_bottom: 0) {
|
31
31
|
background-color: $background_color;
|
32
|
-
@include grid(12
|
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;
|
34
34
|
padding-bottom: #{$padding_tb / $em}em;
|
35
35
|
margin-bottom: #{$margin_bottom / $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, $grid_child, $grid_padding_l, $grid_padding_r, $grid_padding_tb, $grid_border, $grid_uom, $col_gutter, $grid_type, $grid_align, $grid_context, $border_color, $border_place: $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) {
|
11
11
|
|
12
12
|
@if $grid_type == 12 {
|
13
13
|
$col_width: 80 - $col_gutter;
|
@@ -49,7 +49,7 @@ $inset_shadow: em($ih-shadow) em($iv-shadow) em($iblur) em($is-shadow);
|
|
49
49
|
}
|
50
50
|
}
|
51
51
|
|
52
|
-
@mixin text_shadow ($shadow_color, $shadow, $prefixes: $prefix_defaults) {
|
52
|
+
@mixin text_shadow ($shadow_color: $shadow_color, $shadow: $shadow, $prefixes: $prefix_defaults) {
|
53
53
|
@each $prefix in $prefixes {
|
54
54
|
#{$prefix}text-shadow: $shadow_color $shadow;
|
55
55
|
}
|
@@ -311,7 +311,7 @@ $legacyPrefixes: $moz_webkit_support) {
|
|
311
311
|
|
312
312
|
// a standardized border radius
|
313
313
|
// ----------------------------
|
314
|
-
@mixin standard_rounded_border ($standard_round_corner, $standard_border_style, $standard_corner_width, $standard_border_color) {
|
314
|
+
@mixin standard_rounded_border ($standard_round_corner: $standard_round_corner, $standard_border_style: $standard_border_style, $standard_corner_width: $standard_corner_width, $standard_border_color: $standard_border_color) {
|
315
315
|
@include border_radius(#{$standard_round_corner / $em}rem);
|
316
316
|
border: $standard_corner_width $standard_border_style $standard_border_color;
|
317
317
|
}
|
@@ -339,7 +339,7 @@ $legacyPrefixes: $moz_webkit_support) {
|
|
339
339
|
// This tool is designed to be a standard spacing element between markup blocks.
|
340
340
|
// The only value to be adjusted is the margin-bottom spacing. This is an argument addressed
|
341
341
|
// in the ``_config.scss`` file
|
342
|
-
@mixin standard_block_spacing ($default_block_spacing) {
|
342
|
+
@mixin standard_block_spacing ($default_block_spacing: $default_block_spacing) {
|
343
343
|
@include clearfix;
|
344
344
|
margin-bottom: #{$default_block_spacing / $em}em;
|
345
345
|
}
|
@@ -348,7 +348,7 @@ $legacyPrefixes: $moz_webkit_support) {
|
|
348
348
|
|
349
349
|
// This mixin allows for quick application of a UI to the <hr> tag
|
350
350
|
// All values are set in the ``_config.scss`` file
|
351
|
-
@mixin standard_hr ($standard_border_style, $standard_hr_width, $standard_hr_spacing, $standard_hr_color){
|
351
|
+
@mixin standard_hr ($standard_border_style: $standard_border_style, $standard_hr_width: $standard_hr_width, $standard_hr_spacing: $standard_hr_spacing, $standard_hr_color: $standard_hr_color){
|
352
352
|
border-bottom: $standard_hr_width $standard_border_style $standard_hr_color;
|
353
353
|
padding-bottom: #{$standard_hr_spacing / $em}rem;
|
354
354
|
margin-bottom: #{$standard_hr_spacing / $em}rem;
|
@@ -358,18 +358,18 @@ $legacyPrefixes: $moz_webkit_support) {
|
|
358
358
|
|
359
359
|
// This series of mixins sets default values for consistant use of text and box shadows
|
360
360
|
// throughout your site. Values are set in the ``_config.scss`` file
|
361
|
-
@mixin primary_text_shadow ($h-shadow, $v-shadow, $blur ) {
|
361
|
+
@mixin primary_text_shadow ($h-shadow: $h-shadow, $v-shadow: $v-shadow, $blur: $blur) {
|
362
362
|
@include text_shadow ($shadow_color, #{$h-shadow / $em}em #{$v-shadow / $em}em #{$blur / $em}em);
|
363
363
|
}
|
364
364
|
|
365
|
-
@mixin disabled_text_shadow ($h-shadow, $v-shadow, $blur ) {
|
365
|
+
@mixin disabled_text_shadow ($h-shadow: $h-shadow, $v-shadow: $v-shadow, $blur: $blur) {
|
366
366
|
@include text_shadow (fade-out($shadow_color, 0.5), #{$h-shadow / $em}em #{$v-shadow / $em}em #{$blur / $em}em);
|
367
367
|
}
|
368
368
|
|
369
|
-
@mixin primary_box_shadow ($h-shadow, $v-shadow, $blur ) {
|
369
|
+
@mixin primary_box_shadow ($h-shadow: $h-shadow, $v-shadow: $v-shadow, $blur: $blur) {
|
370
370
|
@include box_shadow ($shadow_color, #{$h-shadow / $em}em #{$v-shadow / $em}em #{$blur / $em}em);
|
371
371
|
}
|
372
372
|
|
373
|
-
@mixin disabled_box_shadow ($h-shadow, $v-shadow, $blur ) {
|
373
|
+
@mixin disabled_box_shadow ($h-shadow: $h-shadow, $v-shadow: $v-shadow, $blur: $blur) {
|
374
374
|
@include box_shadow (fade-out($shadow_color, 0.4), #{$h-shadow / $em}em #{$v-shadow / $em}em #{$blur / $em}em);
|
375
375
|
}
|
@@ -2,7 +2,7 @@
|
|
2
2
|
//////// heading text mixin //////////
|
3
3
|
// ------------------------------------------------
|
4
4
|
// default values are being set in /stipe/stylesheets/stipe/_typography.scss
|
5
|
-
@mixin heading ($heading_size, $heading_font_family, $heading_color, $heading_font_weight) {
|
5
|
+
@mixin heading ($heading_size: $heading_size, $heading_font_family: $heading_font_family, $heading_color: $heading_color, $heading_font_weight: $heading_font_weight) {
|
6
6
|
font-size: em($heading_size);
|
7
7
|
line-height: baseline($heading_size);
|
8
8
|
margin-bottom: baseline-margin($heading_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.
|
4
|
+
version: 0.0.4.2
|
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-
|
13
|
+
date: 2012-10-11 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: compass
|
@@ -35,7 +35,7 @@ dependencies:
|
|
35
35
|
requirements:
|
36
36
|
- - ! '>='
|
37
37
|
- !ruby/object:Gem::Version
|
38
|
-
version: 3.2.
|
38
|
+
version: 3.2.1
|
39
39
|
type: :runtime
|
40
40
|
prerelease: false
|
41
41
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
requirements:
|
44
44
|
- - ! '>='
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: 3.2.
|
46
|
+
version: 3.2.1
|
47
47
|
description: Core styles for the Toadstool styleguide app.
|
48
48
|
email: dale.sande@gmail.com
|
49
49
|
executables: []
|
@@ -52,66 +52,66 @@ extra_rdoc_files: []
|
|
52
52
|
files:
|
53
53
|
- readme.md
|
54
54
|
- lib/stipe.rb
|
55
|
+
- stylesheets/stipe/_buttons.scss
|
56
|
+
- stylesheets/stipe/_color.scss
|
57
|
+
- stylesheets/stipe/_forms.scss
|
58
|
+
- stylesheets/stipe/_gradients.scss
|
59
|
+
- stylesheets/stipe/_grid.scss
|
60
|
+
- stylesheets/stipe/_media.scss
|
55
61
|
- stylesheets/stipe/_stipe.scss
|
56
|
-
- stylesheets/stipe/
|
57
|
-
- stylesheets/stipe/buttons/lib/_cupid-green.scss
|
62
|
+
- stylesheets/stipe/_typography.scss
|
58
63
|
- stylesheets/stipe/buttons/_extends.scss
|
59
64
|
- stylesheets/stipe/buttons/doc-src/buttons.md
|
60
|
-
- stylesheets/stipe/
|
61
|
-
- stylesheets/stipe/
|
62
|
-
- stylesheets/stipe/
|
63
|
-
- stylesheets/stipe/
|
64
|
-
- stylesheets/stipe/
|
65
|
-
- stylesheets/stipe/
|
66
|
-
- stylesheets/stipe/
|
67
|
-
- stylesheets/stipe/
|
68
|
-
- stylesheets/stipe/
|
69
|
-
- stylesheets/stipe/
|
70
|
-
- stylesheets/stipe/
|
71
|
-
- stylesheets/stipe/_color.scss
|
65
|
+
- stylesheets/stipe/buttons/lib/_cupid-green.scss
|
66
|
+
- stylesheets/stipe/buttons/lib/_minimal.scss
|
67
|
+
- stylesheets/stipe/color/_color_math.scss
|
68
|
+
- stylesheets/stipe/color/_default_color_pallet.scss
|
69
|
+
- stylesheets/stipe/color/_extends_deprecated.scss
|
70
|
+
- stylesheets/stipe/color/_grayscale_math.scss
|
71
|
+
- stylesheets/stipe/color/readme.md
|
72
|
+
- stylesheets/stipe/doc-src/grids.md
|
73
|
+
- stylesheets/stipe/forms/_extends.scss
|
74
|
+
- stylesheets/stipe/forms/_mixins.scss
|
75
|
+
- stylesheets/stipe/gradients/_extends.scss
|
72
76
|
- stylesheets/stipe/gradients/mixins/_area_51.scss
|
73
77
|
- stylesheets/stipe/gradients/mixins/_linear_gradient_bkgimage.scss
|
74
|
-
- stylesheets/stipe/
|
78
|
+
- stylesheets/stipe/grid/_debug.scss
|
79
|
+
- stylesheets/stipe/grid/_extends.scss
|
75
80
|
- stylesheets/stipe/grid/_mixins.scss
|
76
81
|
- stylesheets/stipe/grid/lib/_grid_background.scss
|
77
|
-
- stylesheets/stipe/grid/lib/_grid_placement.scss
|
78
82
|
- stylesheets/stipe/grid/lib/_grid_margin.scss
|
83
|
+
- stylesheets/stipe/grid/lib/_grid_placement.scss
|
79
84
|
- stylesheets/stipe/grid/lib/_push_logic.scss
|
80
85
|
- stylesheets/stipe/grid/lib/_the_grid.scss
|
81
|
-
- stylesheets/stipe/grid/_debug.scss
|
82
86
|
- stylesheets/stipe/grid/readme.md
|
83
|
-
- stylesheets/stipe/
|
84
|
-
- stylesheets/stipe/
|
85
|
-
- stylesheets/stipe/
|
86
|
-
- stylesheets/stipe/
|
87
|
-
- stylesheets/stipe/toadstool/ui_patterns/_emBox.scss
|
88
|
-
- stylesheets/stipe/toadstool/modules/_footer.scss
|
89
|
-
- stylesheets/stipe/toadstool/modules/_header.scss
|
90
|
-
- stylesheets/stipe/toadstool/modules/_main_nav.scss
|
91
|
-
- stylesheets/stipe/toadstool/_web_fonts.scss
|
87
|
+
- stylesheets/stipe/resets/_eric_meyer.scss
|
88
|
+
- stylesheets/stipe/resets/_toadstool.scss
|
89
|
+
- stylesheets/stipe/stipe/_extends.scss
|
90
|
+
- stylesheets/stipe/stipe/_mixins.scss
|
92
91
|
- stylesheets/stipe/toadstool/_buttons.scss
|
93
|
-
- stylesheets/stipe/toadstool/
|
92
|
+
- stylesheets/stipe/toadstool/_config.scss
|
94
93
|
- stylesheets/stipe/toadstool/_design.scss
|
95
|
-
- stylesheets/stipe/toadstool/_grids.scss
|
96
94
|
- stylesheets/stipe/toadstool/_forms.scss
|
97
|
-
- stylesheets/stipe/toadstool/
|
95
|
+
- stylesheets/stipe/toadstool/_grids.scss
|
98
96
|
- stylesheets/stipe/toadstool/_modules.scss
|
97
|
+
- stylesheets/stipe/toadstool/_typography.scss
|
99
98
|
- stylesheets/stipe/toadstool/_ui_manifest.scss
|
100
|
-
- stylesheets/stipe/toadstool/
|
101
|
-
- stylesheets/stipe/
|
102
|
-
- stylesheets/stipe/
|
103
|
-
- stylesheets/stipe/
|
104
|
-
- stylesheets/stipe/
|
105
|
-
- stylesheets/stipe/
|
106
|
-
- stylesheets/stipe/
|
107
|
-
- stylesheets/stipe/
|
108
|
-
- stylesheets/stipe/
|
109
|
-
- stylesheets/stipe/
|
110
|
-
- stylesheets/stipe/
|
111
|
-
- stylesheets/stipe/
|
112
|
-
- stylesheets/stipe/
|
113
|
-
- stylesheets/stipe/
|
114
|
-
- stylesheets/stipe/
|
99
|
+
- stylesheets/stipe/toadstool/_ui_patterns.scss
|
100
|
+
- stylesheets/stipe/toadstool/_web_fonts.scss
|
101
|
+
- stylesheets/stipe/toadstool/modules/_footer.scss
|
102
|
+
- stylesheets/stipe/toadstool/modules/_header.scss
|
103
|
+
- stylesheets/stipe/toadstool/modules/_main_nav.scss
|
104
|
+
- stylesheets/stipe/toadstool/ui_patterns/_color_grid.scss
|
105
|
+
- stylesheets/stipe/toadstool/ui_patterns/_emBox.scss
|
106
|
+
- stylesheets/stipe/toadstool/ui_patterns/_prettify.scss
|
107
|
+
- stylesheets/stipe/typography/_default.scss
|
108
|
+
- stylesheets/stipe/typography/_extends.scss
|
109
|
+
- stylesheets/stipe/typography/_functions.scss
|
110
|
+
- stylesheets/stipe/typography/_mixins.scss
|
111
|
+
- stylesheets/stipe/typography/web_fonts/_font_awesome.scss
|
112
|
+
- stylesheets/stipe/typography/web_fonts/_font_awesome_pua.scss
|
113
|
+
- stylesheets/stipe/typography/web_fonts/_zocial.scss
|
114
|
+
- stylesheets/stipe/typography/web_fonts/_zocial_characters.scss
|
115
115
|
homepage: https://github.com/Anotheruiguy/stipe
|
116
116
|
licenses: []
|
117
117
|
post_install_message:
|
@@ -132,7 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
132
132
|
version: '0'
|
133
133
|
requirements: []
|
134
134
|
rubyforge_project:
|
135
|
-
rubygems_version: 1.8.
|
135
|
+
rubygems_version: 1.8.23
|
136
136
|
signing_key:
|
137
137
|
specification_version: 3
|
138
138
|
summary: Core styles for Toadstool
|