refills 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (188) hide show
  1. checksums.yaml +4 -4
  2. data/.hound.yml +3 -2
  3. data/.ruby-version +1 -1
  4. data/.scss-lint.yml +97 -24
  5. data/CONTRIBUTING.md +4 -3
  6. data/Gemfile +13 -10
  7. data/README.md +31 -15
  8. data/circle.yml +7 -0
  9. data/config.rb +4 -13
  10. data/{lib → helpers}/snippet_helpers.rb +14 -6
  11. data/lib/refills/version.rb +1 -1
  12. data/refills.gemspec +2 -2
  13. data/sache.json +1 -1
  14. data/source/_badges.html.erb +1 -1
  15. data/source/_cards.html.erb +1 -1
  16. data/source/_centered_navigation.html.erb +5 -5
  17. data/source/_comment.html.erb +2 -2
  18. data/source/_device.html.erb +0 -1
  19. data/source/_expander.html.erb +2 -2
  20. data/source/_flex_boxes.html.erb +6 -6
  21. data/source/_footer.html.erb +1 -1
  22. data/source/_footer_2.html.erb +1 -1
  23. data/source/_grid_items.html.erb +7 -7
  24. data/source/_grid_items_lines.html.erb +8 -8
  25. data/source/_hero.html.erb +4 -9
  26. data/source/_icon_bullet_points.html.erb +6 -7
  27. data/source/_logo_section.html.erb +8 -0
  28. data/source/_modal.html.erb +2 -2
  29. data/source/_navigation.html.erb +2 -3
  30. data/source/_search_bar.html.erb +1 -1
  31. data/source/_search_tools.html.erb +54 -52
  32. data/source/_side_image.html.erb +0 -1
  33. data/source/_sliding_panel.html.erb +13 -0
  34. data/source/_type_system_geometric.html.erb +4 -3
  35. data/source/_type_system_rounded.html.erb +3 -3
  36. data/source/_type_system_sans.html.erb +3 -3
  37. data/source/_type_system_serif.html.erb +4 -4
  38. data/source/_type_system_slab.html.erb +3 -3
  39. data/source/_type_system_traditional.html.erb +3 -3
  40. data/source/components.html.erb +9 -5
  41. data/source/images/background-image.png +0 -0
  42. data/source/images/cosmin_capitanu_screen.jpg +0 -0
  43. data/source/images/new.svg +22 -0
  44. data/source/images/placeholder_square.png +0 -0
  45. data/source/images/placeholder_wide.png +0 -0
  46. data/source/images/placeholder_wider.png +0 -0
  47. data/source/index.html.erb +10 -3
  48. data/source/javascripts/jquery.erToc.js +1 -6
  49. data/source/javascripts/refills/accordion_base.js +5 -0
  50. data/source/javascripts/refills/accordion_tabs.js +1 -2
  51. data/source/javascripts/refills/accordion_tabs_minimal.js +1 -2
  52. data/source/javascripts/refills/base-accordion.js +5 -0
  53. data/source/javascripts/refills/centered_navigation.js +27 -9
  54. data/source/javascripts/refills/coffeescript/accordion.coffee +3 -4
  55. data/source/javascripts/refills/coffeescript/accordion_base.coffee +6 -0
  56. data/source/javascripts/refills/coffeescript/accordion_tabs.coffee +9 -12
  57. data/source/javascripts/refills/coffeescript/accordion_tabs_minimal.coffee +9 -12
  58. data/source/javascripts/refills/coffeescript/animate.coffee +4 -7
  59. data/source/javascripts/refills/coffeescript/base-accordion.coffee +5 -0
  60. data/source/javascripts/refills/coffeescript/centered_navigation.coffee +6 -8
  61. data/source/javascripts/refills/coffeescript/dropdown.coffee +6 -10
  62. data/source/javascripts/refills/coffeescript/expander.coffee +4 -6
  63. data/source/javascripts/refills/coffeescript/fade_in.coffee +6 -8
  64. data/source/javascripts/refills/coffeescript/modal.coffee +7 -11
  65. data/source/javascripts/refills/coffeescript/navigation.coffee +6 -8
  66. data/source/javascripts/refills/coffeescript/parallax.coffee +9 -8
  67. data/source/javascripts/refills/coffeescript/scroll_on_page.coffee +6 -11
  68. data/source/javascripts/refills/coffeescript/search_tools.coffee +0 -85
  69. data/source/javascripts/refills/coffeescript/sliding_panel.coffee +6 -0
  70. data/source/javascripts/refills/coffeescript/vertical_tabs.coffee +21 -21
  71. data/source/javascripts/refills/dropdown.js +8 -8
  72. data/source/javascripts/refills/expander.js +1 -4
  73. data/source/javascripts/refills/modal.js +1 -1
  74. data/source/javascripts/refills/navigation.js +26 -7
  75. data/source/javascripts/refills/navigation_centered.js +13 -0
  76. data/source/javascripts/refills/scroll_on_page.js +8 -5
  77. data/source/javascripts/refills/search_tools.js +2 -2
  78. data/source/javascripts/refills/sliding_panel.js +6 -0
  79. data/source/javascripts/refills/unstyled/accordion.js +5 -0
  80. data/source/javascripts/refills/unstyled/accordion_tabs.js +18 -0
  81. data/source/javascripts/refills/unstyled/dropdown.js +12 -0
  82. data/source/javascripts/refills/unstyled/expander.js +8 -0
  83. data/source/javascripts/refills/unstyled/modal.js +17 -0
  84. data/source/javascripts/refills/unstyled/navigation.js +13 -0
  85. data/source/javascripts/refills/unstyled/navigation_centered.js +13 -0
  86. data/source/javascripts/refills/unstyled/scroll_on_page.js +29 -0
  87. data/source/javascripts/refills/unstyled/sliding_panel.js +6 -0
  88. data/source/javascripts/refills/unstyled/vertical_tabs.js +32 -0
  89. data/source/layouts/layout.erb +3 -3
  90. data/source/refills-hero.html.erb +6 -3
  91. data/source/stylesheets/_bourbon-nav.scss +14 -7
  92. data/source/stylesheets/_refill.scss +215 -0
  93. data/source/stylesheets/_refills-footer.scss +62 -0
  94. data/source/stylesheets/_refills-header.scss +113 -0
  95. data/source/stylesheets/_refills-menu.scss +91 -0
  96. data/source/stylesheets/_refills-nav.scss +13 -13
  97. data/source/stylesheets/_refills-styles.scss +8 -644
  98. data/source/stylesheets/_refills-variables.scss +20 -0
  99. data/source/stylesheets/all.css.scss +78 -0
  100. data/source/stylesheets/refills/_accordion-tabs-minimal.scss +9 -14
  101. data/source/stylesheets/refills/_accordion-tabs.scss +11 -16
  102. data/source/stylesheets/refills/_accordion.scss +13 -29
  103. data/source/stylesheets/refills/_animate.scss +9 -10
  104. data/source/stylesheets/refills/_badges.scss +18 -35
  105. data/source/stylesheets/refills/_breadcrumbs.scss +15 -19
  106. data/source/stylesheets/refills/_button-group.scss +6 -12
  107. data/source/stylesheets/refills/_cards.scss +22 -31
  108. data/source/stylesheets/refills/_centered-navigation.scss +16 -13
  109. data/source/stylesheets/refills/_comment.scss +3 -6
  110. data/source/stylesheets/refills/_device.scss +29 -40
  111. data/source/stylesheets/refills/_dropdown.scss +17 -27
  112. data/source/stylesheets/refills/_expander.scss +14 -21
  113. data/source/stylesheets/refills/_fade-in.scss +7 -11
  114. data/source/stylesheets/refills/_flashes.scss +21 -33
  115. data/source/stylesheets/refills/_flex-boxes.scss +18 -26
  116. data/source/stylesheets/refills/_footer-2.scss +19 -33
  117. data/source/stylesheets/refills/_footer.scss +15 -38
  118. data/source/stylesheets/refills/_grid-items-lines.scss +12 -21
  119. data/source/stylesheets/refills/_grid-items.scss +31 -40
  120. data/source/stylesheets/refills/_hero.scss +22 -55
  121. data/source/stylesheets/refills/_hover-tile-animation.scss +8 -17
  122. data/source/stylesheets/refills/_icon-bullet-points.scss +26 -35
  123. data/source/stylesheets/refills/_image-gradient-dynamic.scss +31 -20
  124. data/source/stylesheets/refills/_logo-section.scss +25 -0
  125. data/source/stylesheets/refills/_maps.scss +2 -2
  126. data/source/stylesheets/refills/_modal.scss +32 -45
  127. data/source/stylesheets/refills/_navigation.scss +33 -39
  128. data/source/stylesheets/refills/_pagination.scss +10 -23
  129. data/source/stylesheets/refills/_progress-bar-indication.scss +8 -15
  130. data/source/stylesheets/refills/_progress-bar.scss +24 -26
  131. data/source/stylesheets/refills/_ribbon.scss +4 -5
  132. data/source/stylesheets/refills/_scroll-on-page.scss +12 -15
  133. data/source/stylesheets/refills/_search-bar.scss +6 -13
  134. data/source/stylesheets/refills/_search-tools.scss +41 -42
  135. data/source/stylesheets/refills/_side-image.scss +8 -20
  136. data/source/stylesheets/refills/_sliding-panel.scss +79 -0
  137. data/source/stylesheets/refills/_stats.scss +2 -3
  138. data/source/stylesheets/refills/_switch.scss +13 -16
  139. data/source/stylesheets/refills/_tables-minimal.scss +12 -24
  140. data/source/stylesheets/refills/_tables.scss +11 -20
  141. data/source/stylesheets/refills/_texture-legend.scss +17 -13
  142. data/source/stylesheets/refills/_textures.scss +13 -9
  143. data/source/stylesheets/refills/_tooltip.scss +9 -16
  144. data/source/stylesheets/refills/_type-system-geometric.scss +14 -17
  145. data/source/stylesheets/refills/_type-system-rounded.scss +19 -19
  146. data/source/stylesheets/refills/_type-system-sans.scss +26 -26
  147. data/source/stylesheets/refills/_type-system-serif.scss +17 -20
  148. data/source/stylesheets/refills/_type-system-slab.scss +14 -17
  149. data/source/stylesheets/refills/_type-system-traditional.scss +18 -21
  150. data/source/stylesheets/refills/_vertical-tabs.scss +26 -30
  151. data/source/stylesheets/refills/_video.scss +1 -1
  152. data/source/stylesheets/refills/unstyled/_accordion-tabs.scss +36 -0
  153. data/source/stylesheets/refills/unstyled/_accordion.scss +17 -0
  154. data/source/stylesheets/refills/unstyled/_button-group.scss +30 -0
  155. data/source/stylesheets/refills/unstyled/_cards.scss +20 -0
  156. data/source/stylesheets/refills/unstyled/_comment.scss +28 -0
  157. data/source/stylesheets/refills/unstyled/_dropdown.scss +42 -0
  158. data/source/stylesheets/refills/unstyled/_expander.scss +20 -0
  159. data/source/stylesheets/refills/unstyled/_footer.scss +64 -0
  160. data/source/stylesheets/refills/unstyled/_hover-menu.scss +60 -0
  161. data/source/stylesheets/refills/unstyled/_modal.scss +71 -0
  162. data/source/stylesheets/refills/unstyled/_navigation-centered.scss +92 -0
  163. data/source/stylesheets/refills/unstyled/_navigation.scss +82 -0
  164. data/source/stylesheets/refills/unstyled/_scroll-on-page.scss +22 -0
  165. data/source/stylesheets/refills/unstyled/_search-bar.scss +26 -0
  166. data/source/stylesheets/refills/unstyled/_sliding-panel.scss +36 -0
  167. data/source/stylesheets/refills/unstyled/_switch.scss +50 -0
  168. data/source/stylesheets/refills/unstyled/_tooltip.scss +36 -0
  169. data/source/stylesheets/refills/unstyled/_vertical-tabs.scss +53 -0
  170. data/source/stylesheets/vendor/prism.css +4 -4
  171. data/source/svgs/_menu_icon.html.erb +6 -0
  172. data/source/svgs/_refills_logo.html.erb +8 -0
  173. data/source/type-systems.html.erb +5 -1
  174. data/spec/refills/import_generator_spec.rb +1 -1
  175. metadata +59 -19
  176. data/.travis.yml +0 -8
  177. data/source/_sliding_menu.html.erb +0 -13
  178. data/source/images/placeholder_logo_1.png +0 -0
  179. data/source/images/placeholder_logo_1_dark.png +0 -0
  180. data/source/images/placeholder_logo_2.png +0 -0
  181. data/source/images/placeholder_logo_2_dark.png +0 -0
  182. data/source/images/placeholder_logo_3.png +0 -0
  183. data/source/images/placeholder_logo_3_dark.png +0 -0
  184. data/source/images/placeholder_logo_4.png +0 -0
  185. data/source/images/placeholder_logo_4_dark.png +0 -0
  186. data/source/javascripts/refills/sliding_menu.js +0 -6
  187. data/source/stylesheets/all.scss +0 -66
  188. data/source/stylesheets/refills/_sliding-menu.scss +0 -86
@@ -0,0 +1,36 @@
1
+ .tooltip-item {
2
+ display: inline-block;
3
+ position: relative;
4
+ text-align: center;
5
+
6
+ &:focus .tooltip,
7
+ &:hover .tooltip {
8
+ opacity: 1;
9
+ visibility: visible;
10
+ }
11
+
12
+ .tooltip {
13
+ @include position(absolute, null 0 3em);
14
+ background-color: #f5f5f5;
15
+ margin-left: -2em;
16
+ opacity: 0;
17
+ text-align: center;
18
+ transition: all 0.2s ease-in-out;
19
+ visibility: hidden;
20
+ width: 12em;
21
+ z-index: 10;
22
+ }
23
+
24
+ .tooltip::after {
25
+ @include position(absolute, null 0 null);
26
+ bottom: -1em;
27
+ color: #f5f5f5;
28
+ content: "▼";
29
+ font-size: 1.4em;
30
+ text-align: center;
31
+ }
32
+
33
+ .tooltip-content {
34
+ margin-bottom: 0;
35
+ }
36
+ }
@@ -0,0 +1,53 @@
1
+ .vertical-tabs-container {
2
+ $large-screen: 40em !default;
3
+ $vertical-tabs-height: 6.25em;
4
+
5
+ @include clearfix;
6
+
7
+ .vertical-tabs {
8
+ display: none;
9
+
10
+ @include media($large-screen) {
11
+ display: inline;
12
+ float: left;
13
+ height: $vertical-tabs-height;
14
+ width: 20%;
15
+ }
16
+ }
17
+
18
+ .vertical-tab {
19
+ @include media($large-screen) {
20
+ display: block;
21
+
22
+ &.is-active {
23
+ color: #f00;
24
+ }
25
+ }
26
+ }
27
+
28
+ .vertical-tab-content-container {
29
+ display: block;
30
+
31
+ @include media($large-screen) {
32
+ @include size(80%, $vertical-tabs-height);
33
+ display: inline-block;
34
+ }
35
+ }
36
+
37
+ .vertical-tab-content {
38
+ @include media($large-screen) {
39
+ display: none;
40
+ }
41
+ }
42
+
43
+ .vertical-tab-accordion-heading {
44
+ cursor: pointer;
45
+ display: block;
46
+
47
+ @include media($large-screen) {
48
+ display: none;
49
+ }
50
+ }
51
+ }
52
+
53
+ // Based on code by Jett Miller jettmiller.net
@@ -48,7 +48,7 @@ code[class*="language-"]::selection, code[class*="language-"] ::selection {
48
48
  /* Code blocks */
49
49
  pre[class*="language-"] {
50
50
  padding: 1em;
51
- margin: .5em 0;
51
+ margin: 0.5em 0;
52
52
  overflow: auto;
53
53
  }
54
54
 
@@ -59,8 +59,8 @@ pre[class*="language-"] {
59
59
 
60
60
  /* Inline code */
61
61
  :not(pre) > code[class*="language-"] {
62
- padding: .1em;
63
- border-radius: .3em;
62
+ padding: 0.1em;
63
+ border-radius: 0.3em;
64
64
  }
65
65
 
66
66
  .token.comment,
@@ -75,7 +75,7 @@ pre[class*="language-"] {
75
75
  }
76
76
 
77
77
  .namespace {
78
- opacity: .7;
78
+ opacity: 0.7;
79
79
  }
80
80
 
81
81
  .token.property,
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg"
2
+ x="0px" y="0px" width="12.6px" height="9px" viewBox="0 0 12.6 9">
3
+ <path d="M0,0.9C0,0.4,0.4,0,0.9,0h10.8c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9H0.9C0.4,1.8,0,1.4,0,0.9z M12.6,4.5
4
+ c0,0.5-0.4,0.9-0.9,0.9H0.9C0.4,5.4,0,5,0,4.5C0,4,0.4,3.6,0.9,3.6h10.8C12.2,3.6,12.6,4,12.6,4.5z M12.6,8.1
5
+ c0,0.5-0.4,0.9-0.9,0.9H0.9C0.4,9,0,8.6,0,8.1c0-0.5,0.4-0.9,0.9-0.9h10.8C12.2,7.2,12.6,7.6,12.6,8.1z"/>
6
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="612.4px" height="612.4px" viewBox="0 0 612.4 612.4">
2
+ <path d="M306.2,34.9c149.4,0,271.3,121.4,271.3,271.3c0,149.4-121.4,271.3-271.3,271.3S34.9,456.1,34.9,306.2
3
+ S156.4,34.9,306.2,34.9 M306.2,0C137.2,0,0,137.2,0,306.2s137.2,306.2,306.2,306.2s306.2-137.2,306.2-306.2
4
+ C612,136.7,475.3,0,306.2,0L306.2,0z"/>
5
+ <path d="M598,213.6c-3.5-10.9-7.4-21.4-11.8-31.5h-560c-4.4,10-8.3,21-11.8,31.5H598z"/>
6
+ <path d="M610.7,276.5c-0.9-10.5-2.6-21.4-4.8-31.5H6.1c-2.2,10.5-3.5,21-4.8,31.5H610.7z"/>
7
+ <path d="M0,308.4C1.3,476.6,137.6,612,306.2,612c168.2,0,304.9-135.9,306.2-303.6H0z"/>
8
+ </svg>
@@ -1,7 +1,11 @@
1
+ ---
2
+ title: Type Systems
3
+ ---
4
+
1
5
  <div class="refills-type-systems">
2
6
 
3
7
  <a class="js-menu-trigger-refills refills-menu-anchor fixedsticky">
4
- <img src="/images/menu.png" alt="Menu icon">
8
+ <%= partial "svgs/menu_icon" %>
5
9
  </a>
6
10
  <div class="js-menu-screen-refills refills-menu-screen"></div>
7
11
 
@@ -29,7 +29,7 @@ describe Refills::ImportGenerator, type: :generator do
29
29
  search_bar: %w[scss erb],
30
30
  search_tools: %w[scss js erb],
31
31
  side_image: %w[scss erb],
32
- sliding_menu: %w[scss js erb],
32
+ sliding_panel: %w[scss js erb],
33
33
  snippet: %w[erb],
34
34
  switch: %w[scss erb],
35
35
  tables: %w[scss erb],
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: refills
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Reuter
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
- date: 2015-02-02 00:00:00.000000000 Z
16
+ date: 2016-08-26 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: bundler
@@ -43,7 +43,7 @@ dependencies:
43
43
  - - ">="
44
44
  - !ruby/object:Gem::Version
45
45
  version: '0'
46
- description: Prepackaged patterns and components built with Bourbon, Neat and Bitters.
46
+ description: Components and patterns built with Bourbon and Neat.
47
47
  email: design+bourbon@thoughtbot.com
48
48
  executables: []
49
49
  extensions: []
@@ -54,7 +54,6 @@ files:
54
54
  - ".hound.yml"
55
55
  - ".ruby-version"
56
56
  - ".scss-lint.yml"
57
- - ".travis.yml"
58
57
  - CONTRIBUTING.md
59
58
  - Gemfile
60
59
  - LICENSE.md
@@ -62,12 +61,13 @@ files:
62
61
  - Rakefile
63
62
  - bin/deploy
64
63
  - bin/setup
64
+ - circle.yml
65
65
  - config.rb
66
+ - helpers/snippet_helpers.rb
66
67
  - lib/refills.rb
67
68
  - lib/refills/import_generator.rb
68
69
  - lib/refills/list_generator.rb
69
70
  - lib/refills/version.rb
70
- - lib/snippet_helpers.rb
71
71
  - refills.gemspec
72
72
  - sache.json
73
73
  - source/CNAME
@@ -97,6 +97,7 @@ files:
97
97
  - source/_hover_tile_animation.html.erb
98
98
  - source/_icon_bullet_points.html.erb
99
99
  - source/_image_gradient_dynamic.html.erb
100
+ - source/_logo_section.html.erb
100
101
  - source/_maps.html.erb
101
102
  - source/_modal.html.erb
102
103
  - source/_navigation.html.erb
@@ -109,7 +110,7 @@ files:
109
110
  - source/_search_bar.html.erb
110
111
  - source/_search_tools.html.erb
111
112
  - source/_side_image.html.erb
112
- - source/_sliding_menu.html.erb
113
+ - source/_sliding_panel.html.erb
113
114
  - source/_snippet.html.erb
114
115
  - source/_stats.html.erb
115
116
  - source/_switch.html.erb
@@ -131,6 +132,7 @@ files:
131
132
  - source/favicon.png
132
133
  - source/images/EmeraldLake.jpg
133
134
  - source/images/ZeroClipboard.swf
135
+ - source/images/background-image.png
134
136
  - source/images/bourbon-nav/bitters.png
135
137
  - source/images/bourbon-nav/bitters@2x.png
136
138
  - source/images/bourbon-nav/bourbon.png
@@ -152,14 +154,10 @@ files:
152
154
  - source/images/mountains-3.png
153
155
  - source/images/mountains-4.png
154
156
  - source/images/mountains.png
155
- - source/images/placeholder_logo_1.png
156
- - source/images/placeholder_logo_1_dark.png
157
- - source/images/placeholder_logo_2.png
158
- - source/images/placeholder_logo_2_dark.png
159
- - source/images/placeholder_logo_3.png
160
- - source/images/placeholder_logo_3_dark.png
161
- - source/images/placeholder_logo_4.png
162
- - source/images/placeholder_logo_4_dark.png
157
+ - source/images/new.svg
158
+ - source/images/placeholder_square.png
159
+ - source/images/placeholder_wide.png
160
+ - source/images/placeholder_wider.png
163
161
  - source/images/ralph-gray.png
164
162
  - source/images/ralph.png
165
163
  - source/images/refills-logo.svg
@@ -519,14 +517,18 @@ files:
519
517
  - source/javascripts/jquery.glide.js
520
518
  - source/javascripts/menuAnchorAnimation.js
521
519
  - source/javascripts/refills/accordion.js
520
+ - source/javascripts/refills/accordion_base.js
522
521
  - source/javascripts/refills/accordion_tabs.js
523
522
  - source/javascripts/refills/accordion_tabs_minimal.js
524
523
  - source/javascripts/refills/animate.js
524
+ - source/javascripts/refills/base-accordion.js
525
525
  - source/javascripts/refills/centered_navigation.js
526
526
  - source/javascripts/refills/coffeescript/accordion.coffee
527
+ - source/javascripts/refills/coffeescript/accordion_base.coffee
527
528
  - source/javascripts/refills/coffeescript/accordion_tabs.coffee
528
529
  - source/javascripts/refills/coffeescript/accordion_tabs_minimal.coffee
529
530
  - source/javascripts/refills/coffeescript/animate.coffee
531
+ - source/javascripts/refills/coffeescript/base-accordion.coffee
530
532
  - source/javascripts/refills/coffeescript/centered_navigation.coffee
531
533
  - source/javascripts/refills/coffeescript/dropdown.coffee
532
534
  - source/javascripts/refills/coffeescript/expander.coffee
@@ -537,16 +539,28 @@ files:
537
539
  - source/javascripts/refills/coffeescript/scroll_on_page.coffee
538
540
  - source/javascripts/refills/coffeescript/search_tools.coffee
539
541
  - source/javascripts/refills/coffeescript/sliding_menu.coffee
542
+ - source/javascripts/refills/coffeescript/sliding_panel.coffee
540
543
  - source/javascripts/refills/coffeescript/vertical_tabs.coffee
541
544
  - source/javascripts/refills/dropdown.js
542
545
  - source/javascripts/refills/expander.js
543
546
  - source/javascripts/refills/fade_in.js
544
547
  - source/javascripts/refills/modal.js
545
548
  - source/javascripts/refills/navigation.js
549
+ - source/javascripts/refills/navigation_centered.js
546
550
  - source/javascripts/refills/parallax.js
547
551
  - source/javascripts/refills/scroll_on_page.js
548
552
  - source/javascripts/refills/search_tools.js
549
- - source/javascripts/refills/sliding_menu.js
553
+ - source/javascripts/refills/sliding_panel.js
554
+ - source/javascripts/refills/unstyled/accordion.js
555
+ - source/javascripts/refills/unstyled/accordion_tabs.js
556
+ - source/javascripts/refills/unstyled/dropdown.js
557
+ - source/javascripts/refills/unstyled/expander.js
558
+ - source/javascripts/refills/unstyled/modal.js
559
+ - source/javascripts/refills/unstyled/navigation.js
560
+ - source/javascripts/refills/unstyled/navigation_centered.js
561
+ - source/javascripts/refills/unstyled/scroll_on_page.js
562
+ - source/javascripts/refills/unstyled/sliding_panel.js
563
+ - source/javascripts/refills/unstyled/vertical_tabs.js
550
564
  - source/javascripts/refills/vertical_tabs.js
551
565
  - source/javascripts/vendor/ZeroClipboard.min.js
552
566
  - source/javascripts/vendor/fixedsticky.js
@@ -557,9 +571,14 @@ files:
557
571
  - source/refills-menu.html.erb
558
572
  - source/refills-page-scripts.html.erb
559
573
  - source/stylesheets/_bourbon-nav.scss
574
+ - source/stylesheets/_refill.scss
575
+ - source/stylesheets/_refills-footer.scss
576
+ - source/stylesheets/_refills-header.scss
577
+ - source/stylesheets/_refills-menu.scss
560
578
  - source/stylesheets/_refills-nav.scss
561
579
  - source/stylesheets/_refills-styles.scss
562
- - source/stylesheets/all.scss
580
+ - source/stylesheets/_refills-variables.scss
581
+ - source/stylesheets/all.css.scss
563
582
  - source/stylesheets/refills/_accordion-tabs-minimal.scss
564
583
  - source/stylesheets/refills/_accordion-tabs.scss
565
584
  - source/stylesheets/refills/_accordion.scss
@@ -585,6 +604,7 @@ files:
585
604
  - source/stylesheets/refills/_hover-tile-animation.scss
586
605
  - source/stylesheets/refills/_icon-bullet-points.scss
587
606
  - source/stylesheets/refills/_image-gradient-dynamic.scss
607
+ - source/stylesheets/refills/_logo-section.scss
588
608
  - source/stylesheets/refills/_maps.scss
589
609
  - source/stylesheets/refills/_modal.scss
590
610
  - source/stylesheets/refills/_navigation.scss
@@ -597,7 +617,7 @@ files:
597
617
  - source/stylesheets/refills/_search-bar.scss
598
618
  - source/stylesheets/refills/_search-tools.scss
599
619
  - source/stylesheets/refills/_side-image.scss
600
- - source/stylesheets/refills/_sliding-menu.scss
620
+ - source/stylesheets/refills/_sliding-panel.scss
601
621
  - source/stylesheets/refills/_stats.scss
602
622
  - source/stylesheets/refills/_switch.scss
603
623
  - source/stylesheets/refills/_tables-minimal.scss
@@ -613,9 +633,29 @@ files:
613
633
  - source/stylesheets/refills/_type-system-traditional.scss
614
634
  - source/stylesheets/refills/_vertical-tabs.scss
615
635
  - source/stylesheets/refills/_video.scss
636
+ - source/stylesheets/refills/unstyled/_accordion-tabs.scss
637
+ - source/stylesheets/refills/unstyled/_accordion.scss
638
+ - source/stylesheets/refills/unstyled/_button-group.scss
639
+ - source/stylesheets/refills/unstyled/_cards.scss
640
+ - source/stylesheets/refills/unstyled/_comment.scss
641
+ - source/stylesheets/refills/unstyled/_dropdown.scss
642
+ - source/stylesheets/refills/unstyled/_expander.scss
643
+ - source/stylesheets/refills/unstyled/_footer.scss
644
+ - source/stylesheets/refills/unstyled/_hover-menu.scss
645
+ - source/stylesheets/refills/unstyled/_modal.scss
646
+ - source/stylesheets/refills/unstyled/_navigation-centered.scss
647
+ - source/stylesheets/refills/unstyled/_navigation.scss
648
+ - source/stylesheets/refills/unstyled/_scroll-on-page.scss
649
+ - source/stylesheets/refills/unstyled/_search-bar.scss
650
+ - source/stylesheets/refills/unstyled/_sliding-panel.scss
651
+ - source/stylesheets/refills/unstyled/_switch.scss
652
+ - source/stylesheets/refills/unstyled/_tooltip.scss
653
+ - source/stylesheets/refills/unstyled/_vertical-tabs.scss
616
654
  - source/stylesheets/vendor/fixedsticky.css
617
655
  - source/stylesheets/vendor/normalize.css
618
656
  - source/stylesheets/vendor/prism.css
657
+ - source/svgs/_menu_icon.html.erb
658
+ - source/svgs/_refills_logo.html.erb
619
659
  - source/type-systems.html.erb
620
660
  - spec/refills/import_generator_spec.rb
621
661
  - spec/spec_helper.rb
@@ -639,10 +679,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
639
679
  version: '0'
640
680
  requirements: []
641
681
  rubyforge_project:
642
- rubygems_version: 2.4.5
682
+ rubygems_version: 2.5.2
643
683
  signing_key:
644
684
  specification_version: 4
645
- summary: Prepackaged patterns and components built with Bourbon, Neat and Bitters.
685
+ summary: Components and patterns built with Bourbon and Neat.
646
686
  test_files:
647
687
  - spec/refills/import_generator_spec.rb
648
688
  - spec/spec_helper.rb
@@ -1,8 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 1.9.3
4
- - rbx-2
5
- - 2.0.0
6
- - 2.1
7
- script: bundle exec rake
8
- sudo: false
@@ -1,13 +0,0 @@
1
- <button type="button" class="js-menu-trigger sliding-menu-button">
2
- <img src="https://raw.githubusercontent.com/thoughtbot/refills/master/source/images/menu-white.png" alt="Menu Icon">
3
- </button>
4
-
5
- <nav class="js-menu sliding-menu-content">
6
- <ul>
7
- <li><a href="javascript:void(0)">Item 1</a></li>
8
- <li><a href="javascript:void(0)">Item 2</a></li>
9
- <li><a href="javascript:void(0)">Item 3</a></li>
10
- </ul>
11
- </nav>
12
-
13
- <div class="js-menu-screen sliding-menu-fade-screen"></div>
@@ -1,6 +0,0 @@
1
- $(document).ready(function(){
2
- $('.js-menu-trigger,.js-menu-screen').on('click touchstart',function (e) {
3
- $('.js-menu,.js-menu-screen').toggleClass('is-visible');
4
- e.preventDefault();
5
- });
6
- });
@@ -1,66 +0,0 @@
1
- @import "vendor/normalize.css";
2
- @import "vendor/fixedsticky.css";
3
- @import "vendor/prism.css";
4
-
5
- @import "bourbon";
6
- @import "neat";
7
-
8
- @import "refills-styles";
9
- @import "bourbon-nav";
10
- @import "refills-nav";
11
-
12
- @import "refills/accordion-tabs";
13
- @import "refills/accordion-tabs-minimal";
14
- @import "refills/cards";
15
- @import "refills/centered-navigation";
16
- @import "refills/comment";
17
- @import "refills/device";
18
- @import "refills/flex-boxes";
19
- @import "refills/footer";
20
- @import "refills/footer-2";
21
- @import "refills/grid-items";
22
- @import "refills/grid-items-lines";
23
- @import "refills/hero";
24
- @import "refills/icon-bullet-points";
25
- @import "refills/maps";
26
- @import "refills/navigation";
27
- @import "refills/scroll-on-page";
28
- @import "refills/search-tools";
29
- @import "refills/side-image";
30
- @import "refills/tables";
31
- @import "refills/tables-minimal";
32
- @import "refills/vertical-tabs";
33
-
34
- @import "refills/accordion";
35
- @import "refills/animate";
36
- @import "refills/animate-info";
37
- @import "refills/badges";
38
- @import "refills/breadcrumbs";
39
- @import "refills/button-group";
40
- @import "refills/dropdown";
41
- @import "refills/expander";
42
- @import "refills/fade-in";
43
- @import "refills/flashes";
44
- @import "refills/hover-tile-animation";
45
- @import "refills/image-gradient-dynamic";
46
- @import "refills/modal";
47
- @import "refills/pagination";
48
- @import "refills/parallax";
49
- @import "refills/progress-bar";
50
- @import "refills/progress-bar-indication";
51
- @import "refills/ribbon";
52
- @import "refills/search-bar";
53
- @import "refills/sliding-menu";
54
- @import "refills/switch";
55
- @import "refills/stats";
56
- @import "refills/texture-legend";
57
- @import "refills/textures";
58
- @import "refills/tooltip";
59
- @import "refills/video";
60
-
61
- @import "refills/type-system-geometric";
62
- @import "refills/type-system-rounded";
63
- @import "refills/type-system-sans";
64
- @import "refills/type-system-serif";
65
- @import "refills/type-system-slab";
66
- @import "refills/type-system-traditional";