stipe 0.0.5.1 → 0.0.5.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.
- data/readme.md +4 -16
- data/stylesheets/stipe/toadstool/ui_patterns/_color_grid.scss +28 -12
- metadata +49 -49
data/readme.md
CHANGED
@@ -12,23 +12,11 @@ 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.2
|
16
|
+
* UI adjustments to `color_palettes` view
|
17
|
+
|
15
18
|
## 0.0.5.1
|
16
19
|
* Adding new configutation support for form UI
|
17
20
|
|
18
21
|
## 0.0.5.0
|
19
|
-
* Updated stipe manifest to allow for single import
|
20
|
-
|
21
|
-
## 0.0.4.8
|
22
|
-
* Updated typography extends to better minimize headings styles
|
23
|
-
|
24
|
-
## 0.0.4.6
|
25
|
-
* Updated grid system to support 24 col grid solution
|
26
|
-
|
27
|
-
## 0.0.4.5
|
28
|
-
* Addressed all compatibility issues with Sass 3.2
|
29
|
-
|
30
|
-
## 0.0.4.1
|
31
|
-
* Addressed bug with vendor prefix variables
|
32
|
-
|
33
|
-
## 0.0.4.0
|
34
|
-
* Deprecated legacy `@mixin placeholder` Will be deleted from future releases of the library
|
22
|
+
* Updated stipe manifest to allow for single import
|
@@ -1,38 +1,54 @@
|
|
1
1
|
// Toadstool's view
|
2
2
|
// ----------------------------------------------
|
3
3
|
article.colorcode {
|
4
|
-
|
4
|
+
margin-bottom: 2em;
|
5
|
+
@extend %clearfix;
|
5
6
|
@media #{$mobile} {
|
6
7
|
@include grid(4, $grid_context: 4);
|
7
8
|
}
|
9
|
+
.toadstool_subheader {
|
10
|
+
margin-bottom: 1em;
|
11
|
+
}
|
8
12
|
div {
|
9
13
|
width: 60%;
|
10
|
-
margin-bottom: 2em;
|
11
14
|
min-height: em(30);
|
12
15
|
float: left;
|
16
|
+
font-weight: bold;
|
13
17
|
@include box_sizing;
|
18
|
+
span {
|
19
|
+
display: inline-block;
|
20
|
+
margin-left: 1em;
|
21
|
+
font-weight: normal;
|
22
|
+
}
|
14
23
|
}
|
15
24
|
p {
|
16
25
|
position: relative;
|
17
26
|
left: 105%;
|
18
|
-
font-weight: normal;
|
19
27
|
margin-bottom: 0;
|
20
28
|
width: 50%;
|
29
|
+
line-height: 3em;
|
21
30
|
}
|
22
31
|
.border {
|
23
32
|
@include box_shadow (inset $alpha_gray, 0 0 1px);
|
24
33
|
}
|
34
|
+
@media #{$mobile} {
|
35
|
+
div {
|
36
|
+
width: 100%;
|
37
|
+
span {
|
38
|
+
display: block;
|
39
|
+
margin: 0;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
p {
|
43
|
+
color: white;
|
44
|
+
left: 0;
|
45
|
+
margin: em(10) 0 em(10) em(10);
|
46
|
+
line-height: 1.5em;
|
47
|
+
text-shadow: 2px 2px 4px black;
|
48
|
+
}
|
49
|
+
}
|
25
50
|
}
|
26
51
|
|
27
|
-
//.color_block {
|
28
|
-
// @include grid(6);
|
29
|
-
// &:nth-child(odd) {
|
30
|
-
// margin-left: 0;
|
31
|
-
// }
|
32
|
-
// &:nth-child(even) {
|
33
|
-
// margin-right: 0;
|
34
|
-
// }
|
35
|
-
//}
|
36
52
|
|
37
53
|
/////// OOCSS color blocks ////////
|
38
54
|
// ----------------------------------------------
|
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.5.
|
4
|
+
version: 0.0.5.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -52,70 +52,70 @@ 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/_manifest.scss
|
61
|
+
- stylesheets/stipe/_media.scss
|
55
62
|
- stylesheets/stipe/_stipe.scss
|
56
|
-
- stylesheets/stipe/
|
57
|
-
- stylesheets/stipe/buttons/lib/_cupid-green.scss
|
63
|
+
- stylesheets/stipe/_typography.scss
|
58
64
|
- stylesheets/stipe/buttons/_extends.scss
|
59
65
|
- 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/_buttons.scss
|
72
|
-
- stylesheets/stipe/resets/_eric_meyer.scss
|
73
|
-
- stylesheets/stipe/resets/_toadstool.scss
|
74
|
-
- stylesheets/stipe/_color.scss
|
66
|
+
- stylesheets/stipe/buttons/lib/_cupid-green.scss
|
67
|
+
- stylesheets/stipe/buttons/lib/_minimal.scss
|
68
|
+
- stylesheets/stipe/color/_color_math.scss
|
69
|
+
- stylesheets/stipe/color/_default_color_palette.scss
|
70
|
+
- stylesheets/stipe/color/_extends_deprecated.scss
|
71
|
+
- stylesheets/stipe/color/_grayscale_math.scss
|
72
|
+
- stylesheets/stipe/color/readme.md
|
73
|
+
- stylesheets/stipe/doc-src/grids.md
|
74
|
+
- stylesheets/stipe/forms/_extends.scss
|
75
|
+
- stylesheets/stipe/forms/_mixins.scss
|
76
|
+
- stylesheets/stipe/gradients/_extends.scss
|
75
77
|
- stylesheets/stipe/gradients/mixins/_area_51.scss
|
76
78
|
- stylesheets/stipe/gradients/mixins/_linear_gradient_bkgimage.scss
|
77
|
-
- stylesheets/stipe/
|
79
|
+
- stylesheets/stipe/grid/_debug.scss
|
80
|
+
- stylesheets/stipe/grid/_extends.scss
|
78
81
|
- stylesheets/stipe/grid/_mixins.scss
|
79
82
|
- stylesheets/stipe/grid/lib/_grid_background.scss
|
80
|
-
- stylesheets/stipe/grid/lib/_grid_placement.scss
|
81
83
|
- stylesheets/stipe/grid/lib/_grid_margin.scss
|
84
|
+
- stylesheets/stipe/grid/lib/_grid_placement.scss
|
82
85
|
- stylesheets/stipe/grid/lib/_push_logic.scss
|
83
86
|
- stylesheets/stipe/grid/lib/_the_grid.scss
|
84
|
-
- stylesheets/stipe/grid/_debug.scss
|
85
87
|
- stylesheets/stipe/grid/readme.md
|
86
|
-
- stylesheets/stipe/
|
87
|
-
- stylesheets/stipe/
|
88
|
-
- stylesheets/stipe/
|
89
|
-
- stylesheets/stipe/
|
90
|
-
- stylesheets/stipe/toadstool/ui_patterns/_emBox.scss
|
91
|
-
- stylesheets/stipe/toadstool/modules/_footer.scss
|
92
|
-
- stylesheets/stipe/toadstool/modules/_header.scss
|
93
|
-
- stylesheets/stipe/toadstool/modules/_main_nav.scss
|
94
|
-
- stylesheets/stipe/toadstool/_web_fonts.scss
|
88
|
+
- stylesheets/stipe/resets/_eric_meyer.scss
|
89
|
+
- stylesheets/stipe/resets/_toadstool.scss
|
90
|
+
- stylesheets/stipe/stipe/_extends.scss
|
91
|
+
- stylesheets/stipe/stipe/_mixins.scss
|
95
92
|
- stylesheets/stipe/toadstool/_buttons.scss
|
96
|
-
- stylesheets/stipe/toadstool/
|
93
|
+
- stylesheets/stipe/toadstool/_config.scss
|
97
94
|
- stylesheets/stipe/toadstool/_design.scss
|
98
|
-
- stylesheets/stipe/toadstool/_grids.scss
|
99
95
|
- stylesheets/stipe/toadstool/_forms.scss
|
100
|
-
- stylesheets/stipe/toadstool/
|
96
|
+
- stylesheets/stipe/toadstool/_grids.scss
|
101
97
|
- stylesheets/stipe/toadstool/_modules.scss
|
98
|
+
- stylesheets/stipe/toadstool/_typography.scss
|
102
99
|
- stylesheets/stipe/toadstool/_ui_manifest.scss
|
103
|
-
- stylesheets/stipe/toadstool/
|
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/
|
115
|
-
- stylesheets/stipe/
|
116
|
-
- stylesheets/stipe/
|
117
|
-
- stylesheets/stipe/
|
118
|
-
- stylesheets/stipe/
|
100
|
+
- stylesheets/stipe/toadstool/_ui_patterns.scss
|
101
|
+
- stylesheets/stipe/toadstool/_web_fonts.scss
|
102
|
+
- stylesheets/stipe/toadstool/modules/_footer.scss
|
103
|
+
- stylesheets/stipe/toadstool/modules/_header.scss
|
104
|
+
- stylesheets/stipe/toadstool/modules/_main_nav.scss
|
105
|
+
- stylesheets/stipe/toadstool/ui_patterns/_color_grid.scss
|
106
|
+
- stylesheets/stipe/toadstool/ui_patterns/_emBox.scss
|
107
|
+
- stylesheets/stipe/toadstool/ui_patterns/_prettify.scss
|
108
|
+
- stylesheets/stipe/typography/_default.scss
|
109
|
+
- stylesheets/stipe/typography/_extends.scss
|
110
|
+
- stylesheets/stipe/typography/_functions.scss
|
111
|
+
- stylesheets/stipe/typography/_mixins.scss
|
112
|
+
- stylesheets/stipe/typography/headings.md
|
113
|
+
- stylesheets/stipe/typography/readme.md
|
114
|
+
- stylesheets/stipe/typography/web_fonts/_font_awesome.scss
|
115
|
+
- stylesheets/stipe/typography/web_fonts/_font_awesome_pua.scss
|
116
|
+
- stylesheets/stipe/typography/web_fonts/_zocial.scss
|
117
|
+
- stylesheets/stipe/typography/web_fonts/_zocial_characters.scss
|
118
|
+
- stylesheets/stipe/typography/web_fonts/readme.md
|
119
119
|
homepage: https://github.com/Anotheruiguy/stipe
|
120
120
|
licenses: []
|
121
121
|
post_install_message:
|