sb-styleguide 0.0.9 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.codoopts +10 -0
- data/.env +1 -0
- data/.gitignore +1 -0
- data/.ruby-version +1 -0
- data/Gemfile +10 -3
- data/Gemfile.lock +134 -94
- data/Procfile +1 -0
- data/README.md +3 -5
- data/Rakefile +3 -0
- data/app/assets/images/layouts/basic-marketing-site.png +0 -0
- data/app/assets/images/layouts/jumbotron-site.png +0 -0
- data/app/assets/javascripts/base.js.coffee +3 -0
- data/app/assets/javascripts/grids.js.coffee +3 -0
- data/app/assets/javascripts/javascript.js.coffee +3 -0
- data/app/assets/javascripts/modules.js.coffee +3 -0
- data/app/assets/stylesheets/application-old-ie.css.scss +11 -0
- data/app/assets/stylesheets/application.css.scss +33 -30
- data/app/assets/stylesheets/base/_all.scss +6 -0
- data/app/assets/stylesheets/base/_reset.css.scss +16 -0
- data/app/assets/stylesheets/base/_type.scss +16 -0
- data/app/assets/stylesheets/{coderay_githubish.css.scss → modules/_coderay.css.scss} +40 -0
- data/app/assets/stylesheets/modules/_layout_examples.css.scss +13 -0
- data/app/assets/stylesheets/modules/_webfont_table.css.scss +47 -0
- data/app/assets/stylesheets/vanilla-normal-old-ie.css.scss +11 -0
- data/app/assets/stylesheets/vanilla-normal.css.scss +33 -0
- data/app/controllers/application_controller.rb +2 -0
- data/app/controllers/base_controller.rb +52 -0
- data/app/controllers/grids_controller.rb +48 -0
- data/app/controllers/javascript_controller.rb +20 -0
- data/app/controllers/modules_controller.rb +43 -0
- data/app/helpers/styleguide_helper.rb +33 -0
- data/app/views/base/_webfonts_social_standard.html +429 -0
- data/app/views/base/_webfonts_ss_standard.html +2413 -0
- data/app/views/base/buttons.html.haml +20 -0
- data/app/views/base/forms.html.haml +40 -0
- data/app/views/base/images.html.haml +1 -0
- data/app/views/base/index.html.haml +68 -0
- data/app/views/base/labels.html.haml +22 -0
- data/app/views/base/lists.html.haml +20 -0
- data/app/views/base/webfonts.html.haml +17 -0
- data/app/views/grids/index.html.haml +73 -0
- data/app/views/grids/layouts.html.haml +9 -0
- data/app/views/grids/layouts/basic-marketing-site.haml +69 -0
- data/app/views/grids/layouts/jumbotron-site.haml +92 -0
- data/app/views/layouts/_main_nav.html.haml +6 -6
- data/app/views/layouts/application.html.haml +6 -32
- data/app/views/modules/alerts.html.haml +12 -0
- data/app/views/modules/footer.html.haml +2 -0
- data/app/views/modules/index.html.haml +5 -0
- data/app/views/modules/nav.html.haml +12 -0
- data/app/views/modules/panels.html.haml +3 -0
- data/app/views/modules/tabs.html.haml +58 -0
- data/app/views/old_javascript/close.html.haml +2 -0
- data/app/views/old_javascript/forms.html.haml +2 -0
- data/app/views/old_javascript/ga_events.html.haml +2 -0
- data/app/views/old_javascript/index.html.haml +2 -0
- data/app/views/old_javascript/responsive_resize.html.haml +2 -0
- data/app/views/old_javascript/switch.html.haml +2 -0
- data/app/views/parts/base/_button.haml +3 -0
- data/app/views/parts/base/_button_colours.haml +4 -0
- data/app/views/parts/base/_button_group.haml +4 -0
- data/app/views/parts/base/_button_sizing.haml +3 -0
- data/app/views/parts/base/_button_states.haml +3 -0
- data/app/views/parts/base/_form_example.haml +26 -0
- data/app/views/parts/base/_form_example_horizontal.haml +26 -0
- data/app/views/parts/base/_form_group.haml +10 -0
- data/app/views/parts/base/_form_location.haml +3 -0
- data/app/views/parts/base/_labels.haml +5 -0
- data/app/views/parts/base/_labels_sizing.haml +3 -0
- data/app/views/parts/base/_list.haml +10 -0
- data/app/views/parts/base/_list_action.haml +5 -0
- data/app/views/parts/base/_list_nav.haml +12 -0
- data/app/views/parts/base/_list_unset.haml +10 -0
- data/app/views/parts/base/_type_body.haml +2 -0
- data/app/views/parts/base/_type_headings.haml +5 -0
- data/app/views/parts/base/_type_helpers.haml +3 -0
- data/app/views/parts/base/_type_links.haml +9 -0
- data/app/views/parts/base/_type_shouts.haml +4 -0
- data/app/views/parts/grids/_example_layout_1.haml +10 -0
- data/app/views/parts/grids/_live_grid.haml +29 -0
- data/app/views/parts/modules/_alerts.haml +11 -0
- data/app/views/parts/modules/_nav_footer.haml +34 -0
- data/app/views/parts/modules/_nav_header.haml +18 -0
- data/app/views/parts/modules/_panels.haml +9 -0
- data/app/views/parts/modules/_tabs_minimal.haml +11 -0
- data/app/views/parts/modules/_tabs_simple_group.haml +11 -0
- data/app/views/parts/modules/_tabs_simple_group_toggle.haml +11 -0
- data/app/views/parts/modules/_tabs_toggle.haml +5 -0
- data/app/views/parts/modules/_tabs_traditional.haml +11 -0
- data/app/views/shared/_title.html.haml +8 -0
- data/app/views/shared/_ui_nav.html.haml +5 -0
- data/app/views/ui/typography.html.haml +86 -96
- data/lib/sb-styleguide.rb +1 -1
- data/lib/sb-styleguide/version.rb +1 -1
- data/lib/templates/haml/scaffold/_form.html.haml +8 -0
- data/public/javascripts/LICENSE.html +158 -0
- data/public/javascripts/README.md.html +164 -0
- data/public/javascripts/assets/codo.css +1 -0
- data/public/javascripts/assets/codo.js +21 -0
- data/public/javascripts/assets/search_data.js +1 -0
- data/public/javascripts/class_index.html +215 -0
- data/public/javascripts/class_list.html +58 -0
- data/public/javascripts/classes/Close.html +259 -0
- data/public/javascripts/classes/GAEvent.html +231 -0
- data/public/javascripts/classes/ResizeHandler.html +225 -0
- data/public/javascripts/classes/Switch.html +318 -0
- data/public/javascripts/classes/TBGForm.html +373 -0
- data/public/javascripts/extra_list.html +36 -0
- data/public/javascripts/file_list.html +74 -0
- data/public/javascripts/files/styleguide/plugins/tbg-close.js.coffee.html +160 -0
- data/public/javascripts/files/styleguide/plugins/tbg-forms.js.coffee.html +160 -0
- data/public/javascripts/files/styleguide/plugins/tbg-ga-events.js.coffee.html +160 -0
- data/public/javascripts/files/styleguide/plugins/tbg-respinsiveresize.js.coffee.html +160 -0
- data/public/javascripts/files/styleguide/plugins/tbg-switch.js.coffee.html +160 -0
- data/public/javascripts/index.html +14 -0
- data/public/javascripts/method_list.html +187 -0
- data/public/javascripts/mixin_list.html +28 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/assets/codo.css +1 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/assets/codo.js +21 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/assets/search_data.js +1 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/class_index.html +194 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/class_list.html +58 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/classes/Close.html +215 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/classes/GAEvent.html +235 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/classes/ResizeHandler.html +192 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/classes/Switch.html +233 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/classes/TBGForm.html +318 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/extra_list.html +30 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/file_list.html +58 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/files/tbg-close.js.coffee.html +154 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/files/tbg-forms.js.coffee.html +154 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/files/tbg-ga-events.js.coffee.html +154 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/files/tbg-respinsiveresize.js.coffee.html +154 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/files/tbg-switch.js.coffee.html +154 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/index.html +14 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/method_list.html +163 -0
- data/vendor/assets/javascripts/styleguide/plugins/doc/mixin_list.html +28 -0
- data/vendor/assets/javascripts/styleguide/plugins/tbg-close.js.coffee +28 -4
- data/vendor/assets/javascripts/styleguide/plugins/tbg-forms.js.coffee +52 -5
- data/vendor/assets/javascripts/styleguide/plugins/tbg-ga-events.js.coffee +28 -8
- data/vendor/assets/javascripts/styleguide/plugins/tbg-respinsiveresize.js.coffee +21 -2
- data/vendor/assets/javascripts/styleguide/plugins/tbg-switch.js.coffee +37 -2
- data/vendor/assets/stylesheets/_mixins.css.scss +128 -35
- data/vendor/assets/stylesheets/_settings.css.scss +7 -4
- data/vendor/assets/stylesheets/styleguide/base/_labels.css.scss +22 -6
- data/vendor/assets/stylesheets/styleguide/base/_lists.css.scss +23 -18
- data/vendor/assets/stylesheets/styleguide/base/_type.css.scss +11 -5
- data/vendor/assets/stylesheets/styleguide/grid/_grid.css.scss +9 -9
- data/vendor/assets/stylesheets/styleguide/modules/_switch.css.scss +32 -16
- metadata +134 -18
- data/.rvmrc +0 -1
- data/app/helpers/application_helper.rb +0 -13
- data/app/helpers/javascripts_helper.rb +0 -2
- data/app/helpers/ui_helper.rb +0 -2
- data/app/mailers/.gitkeep +0 -0
- data/app/models/.gitkeep +0 -0
- data/app/views/javascripts/_js_nav.html.haml +0 -5
- data/app/views/javascripts/index.html.haml +0 -45
- data/app/views/type/_headings.haml +0 -6
- data/app/views/type/_paragraphs.haml +0 -4
- data/app/views/ui/_ui_nav.html.haml +0 -13
- data/vendor/assets/stylesheets/styleguide/layout/_all.css.scss +0 -5
- data/vendor/plugins/.gitkeep +0 -0
@@ -12,15 +12,8 @@
|
|
12
12
|
padding: 0;
|
13
13
|
|
14
14
|
& > li {
|
15
|
-
display:
|
15
|
+
display:block;
|
16
16
|
margin-right: $column-gutter/4;
|
17
|
-
*display: inline;
|
18
|
-
*zoom: 1;
|
19
|
-
|
20
|
-
&:last-child {
|
21
|
-
margin-right: 0;
|
22
|
-
}
|
23
|
-
|
24
17
|
}
|
25
18
|
|
26
19
|
.divider {
|
@@ -34,19 +27,31 @@
|
|
34
27
|
// Action list Collapse state
|
35
28
|
// ==========================================================================
|
36
29
|
|
37
|
-
@
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
@media ( $lastMQ ) {
|
42
|
-
|
30
|
+
@include smallest-query(true){
|
31
|
+
// Pass true to output outside
|
32
|
+
// media query for IE
|
43
33
|
.action-list.collapse {
|
44
34
|
& > li {
|
45
|
-
display: block;
|
35
|
+
display: inline-block;
|
36
|
+
margin:0;
|
37
|
+
@if old-ie {
|
38
|
+
*display: inline;
|
39
|
+
*zoom: 1;
|
40
|
+
}
|
41
|
+
|
42
|
+
&:last-child {
|
43
|
+
margin-right: 0;
|
44
|
+
}
|
46
45
|
}
|
47
46
|
}
|
48
|
-
|
49
|
-
}
|
50
47
|
}
|
51
48
|
|
52
|
-
|
49
|
+
|
50
|
+
// ==========================================================================
|
51
|
+
// Action list - hoz
|
52
|
+
// ==========================================================================
|
53
|
+
.unset-list {
|
54
|
+
padding-left: 0;
|
55
|
+
list-style: none;
|
56
|
+
list-style-image: none;
|
57
|
+
}
|
@@ -95,8 +95,8 @@ h4, .h4, h5, .h5 {
|
|
95
95
|
}
|
96
96
|
|
97
97
|
h1, .h1 {
|
98
|
-
font-size: ms(
|
99
|
-
line-height: 1.
|
98
|
+
font-size: ms(3);
|
99
|
+
line-height: 1.19;
|
100
100
|
}
|
101
101
|
|
102
102
|
h2, .h2 {
|
@@ -120,10 +120,12 @@ h5, .h5 {
|
|
120
120
|
font-weight: normal;
|
121
121
|
}
|
122
122
|
|
123
|
-
@include smallest-query {
|
123
|
+
@include smallest-query(true) {
|
124
|
+
// Pass true to output outside
|
125
|
+
// media query for IE
|
124
126
|
h1, .h1 {
|
125
|
-
font-size: ms(
|
126
|
-
line-height: 1.
|
127
|
+
font-size: ms(5);
|
128
|
+
line-height: 1.34;
|
127
129
|
}
|
128
130
|
}
|
129
131
|
|
@@ -185,6 +187,10 @@ code {
|
|
185
187
|
background-color: transparentize( $main-color, 0.7);
|
186
188
|
}
|
187
189
|
|
190
|
+
pre > code {
|
191
|
+
display: block;
|
192
|
+
}
|
193
|
+
|
188
194
|
// Improves readability of pre-formatted text in all browsers.
|
189
195
|
|
190
196
|
pre {
|
@@ -47,12 +47,14 @@
|
|
47
47
|
|
48
48
|
.row {
|
49
49
|
@include clearfix;
|
50
|
-
|
51
50
|
$padding-pos: 3;
|
52
|
-
|
51
|
+
//$query-pos: 4;
|
52
|
+
$query-pos: 5;
|
53
|
+
|
53
54
|
@each $grid in $grids {
|
54
55
|
@if(length($grid) == $query-pos ) {
|
55
|
-
|
56
|
+
//@include media-query( nth($grid,$query-pos)) {
|
57
|
+
@include media-query($grid) {
|
56
58
|
.row {
|
57
59
|
margin: 0 0px-(0.5*nth($grid,$padding-pos));
|
58
60
|
}
|
@@ -81,12 +83,10 @@
|
|
81
83
|
|
82
84
|
.column {
|
83
85
|
position: relative;
|
84
|
-
|
85
|
-
//
|
86
|
+
|
87
|
+
//padding: 0 ($column-gutter/2);
|
86
88
|
|
87
|
-
|
88
|
-
float: right;
|
89
|
-
}
|
89
|
+
|
90
90
|
|
91
91
|
&.center {
|
92
92
|
float: none;
|
@@ -124,4 +124,4 @@
|
|
124
124
|
*width:auto;
|
125
125
|
*zoom:1;
|
126
126
|
}
|
127
|
-
}
|
127
|
+
}
|
@@ -16,28 +16,44 @@
|
|
16
16
|
}
|
17
17
|
}
|
18
18
|
|
19
|
-
$
|
20
|
-
@
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
display: none;
|
26
|
-
|
27
|
-
&.is-active {
|
28
|
-
display: block;
|
29
|
-
}
|
19
|
+
@mixin switch-content($grid-name, $nested-grid-name){
|
20
|
+
@if($grid-name == $nested-grid-name) {
|
21
|
+
.#{$grid-name}switch-content {
|
22
|
+
display: none;
|
23
|
+
&.is-active {
|
24
|
+
display: block;
|
30
25
|
}
|
31
26
|
}
|
32
27
|
}
|
33
28
|
@else {
|
34
|
-
|
29
|
+
.#{$grid-name}switch-content {
|
30
|
+
display: block;
|
31
|
+
&.is-active {
|
35
32
|
display: none;
|
36
|
-
|
37
|
-
&.is-active {
|
38
|
-
display: block;
|
39
|
-
}
|
40
33
|
}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
@each $grid in $grids {
|
39
|
+
$grid-name: nth($grid, 1);
|
40
|
+
|
41
|
+
@each $nested-grid in $grids {
|
42
|
+
$nested-grid-name: nth($nested-grid, 1);
|
43
|
+
// If there is a media query
|
44
|
+
@include is-responsive($nested-grid) {
|
45
|
+
@include switch-content($grid-name, $nested-grid-name);
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
|
51
|
+
|
52
|
+
.switch-content {
|
53
|
+
display: none;
|
54
|
+
|
55
|
+
&.is-active {
|
56
|
+
display: block;
|
41
57
|
}
|
42
58
|
}
|
43
59
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sb-styleguide
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
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: 2013-
|
13
|
+
date: 2013-05-28 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: haml
|
@@ -180,36 +180,106 @@ executables: []
|
|
180
180
|
extensions: []
|
181
181
|
extra_rdoc_files: []
|
182
182
|
files:
|
183
|
+
- .codoopts
|
184
|
+
- .env
|
183
185
|
- .gitignore
|
184
|
-
- .
|
186
|
+
- .ruby-version
|
185
187
|
- Capfile
|
186
188
|
- Gemfile
|
187
189
|
- Gemfile.lock
|
188
190
|
- Guardfile
|
189
191
|
- LICENSE
|
192
|
+
- Procfile
|
190
193
|
- README.md
|
191
194
|
- Rakefile
|
195
|
+
- app/assets/images/layouts/basic-marketing-site.png
|
196
|
+
- app/assets/images/layouts/jumbotron-site.png
|
192
197
|
- app/assets/images/rails.png
|
193
198
|
- app/assets/javascripts/application.js
|
199
|
+
- app/assets/javascripts/base.js.coffee
|
200
|
+
- app/assets/javascripts/grids.js.coffee
|
201
|
+
- app/assets/javascripts/javascript.js.coffee
|
194
202
|
- app/assets/javascripts/lib/modernizr.js
|
203
|
+
- app/assets/javascripts/modules.js.coffee
|
204
|
+
- app/assets/stylesheets/application-old-ie.css.scss
|
195
205
|
- app/assets/stylesheets/application.css.scss
|
196
|
-
- app/assets/stylesheets/
|
206
|
+
- app/assets/stylesheets/base/_all.scss
|
207
|
+
- app/assets/stylesheets/base/_reset.css.scss
|
208
|
+
- app/assets/stylesheets/base/_type.scss
|
209
|
+
- app/assets/stylesheets/modules/_coderay.css.scss
|
210
|
+
- app/assets/stylesheets/modules/_layout_examples.css.scss
|
211
|
+
- app/assets/stylesheets/modules/_webfont_table.css.scss
|
212
|
+
- app/assets/stylesheets/vanilla-normal-old-ie.css.scss
|
213
|
+
- app/assets/stylesheets/vanilla-normal.css.scss
|
197
214
|
- app/controllers/application_controller.rb
|
215
|
+
- app/controllers/base_controller.rb
|
216
|
+
- app/controllers/grids_controller.rb
|
217
|
+
- app/controllers/javascript_controller.rb
|
198
218
|
- app/controllers/javascripts_controller.rb
|
219
|
+
- app/controllers/modules_controller.rb
|
199
220
|
- app/controllers/ui_controller.rb
|
200
|
-
- app/helpers/
|
201
|
-
- app/
|
202
|
-
- app/
|
203
|
-
- app/
|
204
|
-
- app/
|
205
|
-
- app/views/
|
206
|
-
- app/views/
|
221
|
+
- app/helpers/styleguide_helper.rb
|
222
|
+
- app/views/base/_webfonts_social_standard.html
|
223
|
+
- app/views/base/_webfonts_ss_standard.html
|
224
|
+
- app/views/base/buttons.html.haml
|
225
|
+
- app/views/base/forms.html.haml
|
226
|
+
- app/views/base/images.html.haml
|
227
|
+
- app/views/base/index.html.haml
|
228
|
+
- app/views/base/labels.html.haml
|
229
|
+
- app/views/base/lists.html.haml
|
230
|
+
- app/views/base/webfonts.html.haml
|
231
|
+
- app/views/grids/index.html.haml
|
232
|
+
- app/views/grids/layouts.html.haml
|
233
|
+
- app/views/grids/layouts/basic-marketing-site.haml
|
234
|
+
- app/views/grids/layouts/jumbotron-site.haml
|
207
235
|
- app/views/layouts/_main_nav.html.haml
|
208
236
|
- app/views/layouts/application.html.haml
|
237
|
+
- app/views/modules/alerts.html.haml
|
238
|
+
- app/views/modules/footer.html.haml
|
239
|
+
- app/views/modules/index.html.haml
|
240
|
+
- app/views/modules/nav.html.haml
|
241
|
+
- app/views/modules/panels.html.haml
|
242
|
+
- app/views/modules/tabs.html.haml
|
243
|
+
- app/views/old_javascript/close.html.haml
|
244
|
+
- app/views/old_javascript/forms.html.haml
|
245
|
+
- app/views/old_javascript/ga_events.html.haml
|
246
|
+
- app/views/old_javascript/index.html.haml
|
247
|
+
- app/views/old_javascript/responsive_resize.html.haml
|
248
|
+
- app/views/old_javascript/switch.html.haml
|
249
|
+
- app/views/parts/base/_button.haml
|
250
|
+
- app/views/parts/base/_button_colours.haml
|
251
|
+
- app/views/parts/base/_button_group.haml
|
252
|
+
- app/views/parts/base/_button_sizing.haml
|
253
|
+
- app/views/parts/base/_button_states.haml
|
254
|
+
- app/views/parts/base/_form_example.haml
|
255
|
+
- app/views/parts/base/_form_example_horizontal.haml
|
256
|
+
- app/views/parts/base/_form_group.haml
|
257
|
+
- app/views/parts/base/_form_location.haml
|
258
|
+
- app/views/parts/base/_labels.haml
|
259
|
+
- app/views/parts/base/_labels_sizing.haml
|
260
|
+
- app/views/parts/base/_list.haml
|
261
|
+
- app/views/parts/base/_list_action.haml
|
262
|
+
- app/views/parts/base/_list_nav.haml
|
263
|
+
- app/views/parts/base/_list_unset.haml
|
264
|
+
- app/views/parts/base/_type_body.haml
|
265
|
+
- app/views/parts/base/_type_headings.haml
|
266
|
+
- app/views/parts/base/_type_helpers.haml
|
267
|
+
- app/views/parts/base/_type_links.haml
|
268
|
+
- app/views/parts/base/_type_shouts.haml
|
269
|
+
- app/views/parts/grids/_example_layout_1.haml
|
270
|
+
- app/views/parts/grids/_live_grid.haml
|
271
|
+
- app/views/parts/modules/_alerts.haml
|
272
|
+
- app/views/parts/modules/_nav_footer.haml
|
273
|
+
- app/views/parts/modules/_nav_header.haml
|
274
|
+
- app/views/parts/modules/_panels.haml
|
275
|
+
- app/views/parts/modules/_tabs_minimal.haml
|
276
|
+
- app/views/parts/modules/_tabs_simple_group.haml
|
277
|
+
- app/views/parts/modules/_tabs_simple_group_toggle.haml
|
278
|
+
- app/views/parts/modules/_tabs_toggle.haml
|
279
|
+
- app/views/parts/modules/_tabs_traditional.haml
|
209
280
|
- app/views/shared/_placeholder_text.html.haml
|
210
|
-
- app/views/
|
211
|
-
- app/views/
|
212
|
-
- app/views/ui/_ui_nav.html.haml
|
281
|
+
- app/views/shared/_title.html.haml
|
282
|
+
- app/views/shared/_ui_nav.html.haml
|
213
283
|
- app/views/ui/alert.html.haml
|
214
284
|
- app/views/ui/buttons.html.haml
|
215
285
|
- app/views/ui/footer.html.haml
|
@@ -229,11 +299,34 @@ files:
|
|
229
299
|
- lib/sb-styleguide.rb
|
230
300
|
- lib/sb-styleguide/version.rb
|
231
301
|
- lib/tasks/.gitkeep
|
302
|
+
- lib/templates/haml/scaffold/_form.html.haml
|
232
303
|
- log/.gitkeep
|
233
304
|
- public/404.html
|
234
305
|
- public/422.html
|
235
306
|
- public/500.html
|
236
307
|
- public/favicon.ico
|
308
|
+
- public/javascripts/LICENSE.html
|
309
|
+
- public/javascripts/README.md.html
|
310
|
+
- public/javascripts/assets/codo.css
|
311
|
+
- public/javascripts/assets/codo.js
|
312
|
+
- public/javascripts/assets/search_data.js
|
313
|
+
- public/javascripts/class_index.html
|
314
|
+
- public/javascripts/class_list.html
|
315
|
+
- public/javascripts/classes/Close.html
|
316
|
+
- public/javascripts/classes/GAEvent.html
|
317
|
+
- public/javascripts/classes/ResizeHandler.html
|
318
|
+
- public/javascripts/classes/Switch.html
|
319
|
+
- public/javascripts/classes/TBGForm.html
|
320
|
+
- public/javascripts/extra_list.html
|
321
|
+
- public/javascripts/file_list.html
|
322
|
+
- public/javascripts/files/styleguide/plugins/tbg-close.js.coffee.html
|
323
|
+
- public/javascripts/files/styleguide/plugins/tbg-forms.js.coffee.html
|
324
|
+
- public/javascripts/files/styleguide/plugins/tbg-ga-events.js.coffee.html
|
325
|
+
- public/javascripts/files/styleguide/plugins/tbg-respinsiveresize.js.coffee.html
|
326
|
+
- public/javascripts/files/styleguide/plugins/tbg-switch.js.coffee.html
|
327
|
+
- public/javascripts/index.html
|
328
|
+
- public/javascripts/method_list.html
|
329
|
+
- public/javascripts/mixin_list.html
|
237
330
|
- public/robots.txt
|
238
331
|
- sb-styleguide.gemspec
|
239
332
|
- script/rails
|
@@ -270,6 +363,26 @@ files:
|
|
270
363
|
- vendor/assets/javascripts/styleguide/lib/jquery.fitvids.js
|
271
364
|
- vendor/assets/javascripts/styleguide/lib/ss-social.js
|
272
365
|
- vendor/assets/javascripts/styleguide/lib/ss-standard.js
|
366
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/assets/codo.css
|
367
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/assets/codo.js
|
368
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/assets/search_data.js
|
369
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/class_index.html
|
370
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/class_list.html
|
371
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/classes/Close.html
|
372
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/classes/GAEvent.html
|
373
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/classes/ResizeHandler.html
|
374
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/classes/Switch.html
|
375
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/classes/TBGForm.html
|
376
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/extra_list.html
|
377
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/file_list.html
|
378
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/files/tbg-close.js.coffee.html
|
379
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/files/tbg-forms.js.coffee.html
|
380
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/files/tbg-ga-events.js.coffee.html
|
381
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/files/tbg-respinsiveresize.js.coffee.html
|
382
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/files/tbg-switch.js.coffee.html
|
383
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/index.html
|
384
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/method_list.html
|
385
|
+
- vendor/assets/javascripts/styleguide/plugins/doc/mixin_list.html
|
273
386
|
- vendor/assets/javascripts/styleguide/plugins/tbg-close.js.coffee
|
274
387
|
- vendor/assets/javascripts/styleguide/plugins/tbg-forms.js.coffee
|
275
388
|
- vendor/assets/javascripts/styleguide/plugins/tbg-ga-events.js.coffee
|
@@ -291,7 +404,6 @@ files:
|
|
291
404
|
- vendor/assets/stylesheets/styleguide/base/webfonts/ss-social.css.scss
|
292
405
|
- vendor/assets/stylesheets/styleguide/base/webfonts/ss-standard.css.scss
|
293
406
|
- vendor/assets/stylesheets/styleguide/grid/_grid.css.scss
|
294
|
-
- vendor/assets/stylesheets/styleguide/layout/_all.css.scss
|
295
407
|
- vendor/assets/stylesheets/styleguide/modules/_alert.css.scss
|
296
408
|
- vendor/assets/stylesheets/styleguide/modules/_all-grid.css.scss
|
297
409
|
- vendor/assets/stylesheets/styleguide/modules/_all-no-grid.css.scss
|
@@ -303,7 +415,6 @@ files:
|
|
303
415
|
- vendor/assets/views/forms/_vertical_form.haml
|
304
416
|
- vendor/assets/views/type/_headings.haml
|
305
417
|
- vendor/assets/views/type/_paragraphs.haml
|
306
|
-
- vendor/plugins/.gitkeep
|
307
418
|
homepage: https://github.com/thebeansgroup/sb-styleguide
|
308
419
|
licenses: []
|
309
420
|
post_install_message:
|
@@ -316,15 +427,21 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
316
427
|
- - ! '>='
|
317
428
|
- !ruby/object:Gem::Version
|
318
429
|
version: '0'
|
430
|
+
segments:
|
431
|
+
- 0
|
432
|
+
hash: 713574395429536481
|
319
433
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
320
434
|
none: false
|
321
435
|
requirements:
|
322
436
|
- - ! '>='
|
323
437
|
- !ruby/object:Gem::Version
|
324
438
|
version: '0'
|
439
|
+
segments:
|
440
|
+
- 0
|
441
|
+
hash: 713574395429536481
|
325
442
|
requirements: []
|
326
443
|
rubyforge_project:
|
327
|
-
rubygems_version: 1.8.
|
444
|
+
rubygems_version: 1.8.23
|
328
445
|
signing_key:
|
329
446
|
specification_version: 3
|
330
447
|
summary: styleguide
|
@@ -338,4 +455,3 @@ test_files:
|
|
338
455
|
- spec/javascripts/plugins/tbg-ga-events_spec.js.coffee
|
339
456
|
- spec/javascripts/plugins/tbg-switch_spec.js.coffee
|
340
457
|
- spec/javascripts/spec.js.coffee
|
341
|
-
has_rdoc:
|
data/.rvmrc
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
rvm use 1.9.3-p194
|