styler-sass 0.1.1

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.
Files changed (200) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +4 -0
  5. data/Gemfile +4 -0
  6. data/Guardfile +70 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +44 -0
  9. data/Rakefile +6 -0
  10. data/app/assets/fonts/awesome/FontAwesome.otf +0 -0
  11. data/app/assets/fonts/awesome/fontawesome-webfont.eot +0 -0
  12. data/app/assets/fonts/awesome/fontawesome-webfont.svg +640 -0
  13. data/app/assets/fonts/awesome/fontawesome-webfont.ttf +0 -0
  14. data/app/assets/fonts/awesome/fontawesome-webfont.woff +0 -0
  15. data/app/assets/fonts/awesome/fontawesome-webfont.woff2 +0 -0
  16. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
  17. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +288 -0
  18. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  19. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
  20. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
  21. data/app/assets/images/.keep +0 -0
  22. data/app/assets/javascripts/bootstrap-sprockets.js +12 -0
  23. data/app/assets/javascripts/bootstrap.js +2363 -0
  24. data/app/assets/javascripts/bootstrap.min.js +7 -0
  25. data/app/assets/javascripts/bootstrap/affix.js +162 -0
  26. data/app/assets/javascripts/bootstrap/alert.js +94 -0
  27. data/app/assets/javascripts/bootstrap/button.js +120 -0
  28. data/app/assets/javascripts/bootstrap/carousel.js +237 -0
  29. data/app/assets/javascripts/bootstrap/collapse.js +211 -0
  30. data/app/assets/javascripts/bootstrap/dropdown.js +165 -0
  31. data/app/assets/javascripts/bootstrap/modal.js +337 -0
  32. data/app/assets/javascripts/bootstrap/popover.js +108 -0
  33. data/app/assets/javascripts/bootstrap/scrollspy.js +172 -0
  34. data/app/assets/javascripts/bootstrap/tab.js +155 -0
  35. data/app/assets/javascripts/bootstrap/tooltip.js +514 -0
  36. data/app/assets/javascripts/bootstrap/transition.js +59 -0
  37. data/app/assets/stylesheets/_bootstrap-compass.scss +9 -0
  38. data/app/assets/stylesheets/_bootstrap-mincer.scss +19 -0
  39. data/app/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
  40. data/app/assets/stylesheets/_bootstrap.scss +56 -0
  41. data/app/assets/stylesheets/_bourbon-deprecated-upcoming.scss +411 -0
  42. data/app/assets/stylesheets/_bourbon.scss +87 -0
  43. data/app/assets/stylesheets/_font-awesome.css.scss +2026 -0
  44. data/app/assets/stylesheets/_font-awesome.min.css.scss +4 -0
  45. data/app/assets/stylesheets/_normalize.css.scss +427 -0
  46. data/app/assets/stylesheets/addons/_border-color.scss +26 -0
  47. data/app/assets/stylesheets/addons/_border-radius.scss +48 -0
  48. data/app/assets/stylesheets/addons/_border-style.scss +25 -0
  49. data/app/assets/stylesheets/addons/_border-width.scss +25 -0
  50. data/app/assets/stylesheets/addons/_buttons.scss +64 -0
  51. data/app/assets/stylesheets/addons/_clearfix.scss +25 -0
  52. data/app/assets/stylesheets/addons/_ellipsis.scss +30 -0
  53. data/app/assets/stylesheets/addons/_font-stacks.scss +31 -0
  54. data/app/assets/stylesheets/addons/_hide-text.scss +27 -0
  55. data/app/assets/stylesheets/addons/_margin.scss +26 -0
  56. data/app/assets/stylesheets/addons/_padding.scss +26 -0
  57. data/app/assets/stylesheets/addons/_position.scss +48 -0
  58. data/app/assets/stylesheets/addons/_prefixer.scss +66 -0
  59. data/app/assets/stylesheets/addons/_retina-image.scss +25 -0
  60. data/app/assets/stylesheets/addons/_size.scss +51 -0
  61. data/app/assets/stylesheets/addons/_text-inputs.scss +113 -0
  62. data/app/assets/stylesheets/addons/_timing-functions.scss +34 -0
  63. data/app/assets/stylesheets/addons/_triangle.scss +63 -0
  64. data/app/assets/stylesheets/addons/_word-wrap.scss +29 -0
  65. data/app/assets/stylesheets/bootstrap/_alerts.scss +73 -0
  66. data/app/assets/stylesheets/bootstrap/_badges.scss +68 -0
  67. data/app/assets/stylesheets/bootstrap/_breadcrumbs.scss +28 -0
  68. data/app/assets/stylesheets/bootstrap/_button-groups.scss +244 -0
  69. data/app/assets/stylesheets/bootstrap/_buttons.scss +168 -0
  70. data/app/assets/stylesheets/bootstrap/_carousel.scss +269 -0
  71. data/app/assets/stylesheets/bootstrap/_close.scss +36 -0
  72. data/app/assets/stylesheets/bootstrap/_code.scss +69 -0
  73. data/app/assets/stylesheets/bootstrap/_component-animations.scss +37 -0
  74. data/app/assets/stylesheets/bootstrap/_dropdowns.scss +216 -0
  75. data/app/assets/stylesheets/bootstrap/_forms.scss +611 -0
  76. data/app/assets/stylesheets/bootstrap/_glyphicons.scss +307 -0
  77. data/app/assets/stylesheets/bootstrap/_grid.scss +84 -0
  78. data/app/assets/stylesheets/bootstrap/_input-groups.scss +167 -0
  79. data/app/assets/stylesheets/bootstrap/_jumbotron.scss +52 -0
  80. data/app/assets/stylesheets/bootstrap/_labels.scss +66 -0
  81. data/app/assets/stylesheets/bootstrap/_list-group.scss +130 -0
  82. data/app/assets/stylesheets/bootstrap/_media.scss +66 -0
  83. data/app/assets/stylesheets/bootstrap/_mixins.scss +40 -0
  84. data/app/assets/stylesheets/bootstrap/_modals.scss +150 -0
  85. data/app/assets/stylesheets/bootstrap/_navbar.scss +662 -0
  86. data/app/assets/stylesheets/bootstrap/_navs.scss +242 -0
  87. data/app/assets/stylesheets/bootstrap/_normalize.scss +424 -0
  88. data/app/assets/stylesheets/bootstrap/_pager.scss +54 -0
  89. data/app/assets/stylesheets/bootstrap/_pagination.scss +89 -0
  90. data/app/assets/stylesheets/bootstrap/_panels.scss +271 -0
  91. data/app/assets/stylesheets/bootstrap/_popovers.scss +131 -0
  92. data/app/assets/stylesheets/bootstrap/_print.scss +101 -0
  93. data/app/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
  94. data/app/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
  95. data/app/assets/stylesheets/bootstrap/_responsive-utilities.scss +179 -0
  96. data/app/assets/stylesheets/bootstrap/_scaffolding.scss +161 -0
  97. data/app/assets/stylesheets/bootstrap/_tables.scss +234 -0
  98. data/app/assets/stylesheets/bootstrap/_theme.scss +291 -0
  99. data/app/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
  100. data/app/assets/stylesheets/bootstrap/_tooltip.scss +101 -0
  101. data/app/assets/stylesheets/bootstrap/_type.scss +298 -0
  102. data/app/assets/stylesheets/bootstrap/_utilities.scss +55 -0
  103. data/app/assets/stylesheets/bootstrap/_variables.scss +872 -0
  104. data/app/assets/stylesheets/bootstrap/_wells.scss +29 -0
  105. data/app/assets/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
  106. data/app/assets/stylesheets/bootstrap/mixins/_background-variant.scss +12 -0
  107. data/app/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
  108. data/app/assets/stylesheets/bootstrap/mixins/_buttons.scss +68 -0
  109. data/app/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
  110. data/app/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
  111. data/app/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
  112. data/app/assets/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
  113. data/app/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
  114. data/app/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
  115. data/app/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
  116. data/app/assets/stylesheets/bootstrap/mixins/_image.scss +33 -0
  117. data/app/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
  118. data/app/assets/stylesheets/bootstrap/mixins/_list-group.scss +32 -0
  119. data/app/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
  120. data/app/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  121. data/app/assets/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
  122. data/app/assets/stylesheets/bootstrap/mixins/_pagination.scss +24 -0
  123. data/app/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
  124. data/app/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
  125. data/app/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
  126. data/app/assets/stylesheets/bootstrap/mixins/_reset-text.scss +18 -0
  127. data/app/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
  128. data/app/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
  129. data/app/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
  130. data/app/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
  131. data/app/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
  132. data/app/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +12 -0
  133. data/app/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
  134. data/app/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  135. data/app/assets/stylesheets/css3/_animation.scss +43 -0
  136. data/app/assets/stylesheets/css3/_appearance.scss +3 -0
  137. data/app/assets/stylesheets/css3/_backface-visibility.scss +3 -0
  138. data/app/assets/stylesheets/css3/_background-image.scss +42 -0
  139. data/app/assets/stylesheets/css3/_background.scss +55 -0
  140. data/app/assets/stylesheets/css3/_border-image.scss +59 -0
  141. data/app/assets/stylesheets/css3/_calc.scss +4 -0
  142. data/app/assets/stylesheets/css3/_columns.scss +47 -0
  143. data/app/assets/stylesheets/css3/_filter.scss +4 -0
  144. data/app/assets/stylesheets/css3/_flex-box.scss +287 -0
  145. data/app/assets/stylesheets/css3/_font-face.scss +24 -0
  146. data/app/assets/stylesheets/css3/_font-feature-settings.scss +4 -0
  147. data/app/assets/stylesheets/css3/_hidpi-media-query.scss +10 -0
  148. data/app/assets/stylesheets/css3/_hyphens.scss +4 -0
  149. data/app/assets/stylesheets/css3/_image-rendering.scss +14 -0
  150. data/app/assets/stylesheets/css3/_keyframes.scss +36 -0
  151. data/app/assets/stylesheets/css3/_linear-gradient.scss +38 -0
  152. data/app/assets/stylesheets/css3/_perspective.scss +8 -0
  153. data/app/assets/stylesheets/css3/_placeholder.scss +8 -0
  154. data/app/assets/stylesheets/css3/_radial-gradient.scss +39 -0
  155. data/app/assets/stylesheets/css3/_selection.scss +42 -0
  156. data/app/assets/stylesheets/css3/_text-decoration.scss +19 -0
  157. data/app/assets/stylesheets/css3/_transform.scss +15 -0
  158. data/app/assets/stylesheets/css3/_transition.scss +71 -0
  159. data/app/assets/stylesheets/css3/_user-select.scss +3 -0
  160. data/app/assets/stylesheets/functions/_assign-inputs.scss +11 -0
  161. data/app/assets/stylesheets/functions/_contains-falsy.scss +20 -0
  162. data/app/assets/stylesheets/functions/_contains.scss +26 -0
  163. data/app/assets/stylesheets/functions/_is-length.scss +11 -0
  164. data/app/assets/stylesheets/functions/_is-light.scss +21 -0
  165. data/app/assets/stylesheets/functions/_is-number.scss +11 -0
  166. data/app/assets/stylesheets/functions/_is-size.scss +13 -0
  167. data/app/assets/stylesheets/functions/_modular-scale.scss +69 -0
  168. data/app/assets/stylesheets/functions/_px-to-em.scss +13 -0
  169. data/app/assets/stylesheets/functions/_px-to-rem.scss +15 -0
  170. data/app/assets/stylesheets/functions/_shade.scss +24 -0
  171. data/app/assets/stylesheets/functions/_strip-units.scss +17 -0
  172. data/app/assets/stylesheets/functions/_tint.scss +24 -0
  173. data/app/assets/stylesheets/functions/_transition-property-name.scss +22 -0
  174. data/app/assets/stylesheets/functions/_unpack.scss +27 -0
  175. data/app/assets/stylesheets/helpers/_convert-units.scss +21 -0
  176. data/app/assets/stylesheets/helpers/_directional-values.scss +96 -0
  177. data/app/assets/stylesheets/helpers/_font-source-declaration.scss +43 -0
  178. data/app/assets/stylesheets/helpers/_gradient-positions-parser.scss +13 -0
  179. data/app/assets/stylesheets/helpers/_linear-angle-parser.scss +25 -0
  180. data/app/assets/stylesheets/helpers/_linear-gradient-parser.scss +41 -0
  181. data/app/assets/stylesheets/helpers/_linear-positions-parser.scss +61 -0
  182. data/app/assets/stylesheets/helpers/_linear-side-corner-parser.scss +31 -0
  183. data/app/assets/stylesheets/helpers/_radial-arg-parser.scss +69 -0
  184. data/app/assets/stylesheets/helpers/_radial-gradient-parser.scss +50 -0
  185. data/app/assets/stylesheets/helpers/_radial-positions-parser.scss +18 -0
  186. data/app/assets/stylesheets/helpers/_render-gradients.scss +26 -0
  187. data/app/assets/stylesheets/helpers/_shape-size-stripper.scss +10 -0
  188. data/app/assets/stylesheets/helpers/_str-to-num.scss +50 -0
  189. data/app/assets/stylesheets/settings/_asset-pipeline.scss +7 -0
  190. data/app/assets/stylesheets/settings/_prefixer.scss +9 -0
  191. data/app/assets/stylesheets/settings/_px-to-em.scss +1 -0
  192. data/bin/console +14 -0
  193. data/bin/setup +7 -0
  194. data/lib/styler.rb +51 -0
  195. data/lib/styler/engine.rb +5 -0
  196. data/lib/styler/generator.rb +80 -0
  197. data/lib/styler/version.rb +3 -0
  198. data/lib/tasks/install.rake +20 -0
  199. data/styler.gemspec +40 -0
  200. metadata +369 -0
@@ -0,0 +1,59 @@
1
+ /* ========================================================================
2
+ * Bootstrap: transition.js v3.3.5
3
+ * http://getbootstrap.com/javascript/#transitions
4
+ * ========================================================================
5
+ * Copyright 2011-2015 Twitter, Inc.
6
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
7
+ * ======================================================================== */
8
+
9
+
10
+ +function ($) {
11
+ 'use strict';
12
+
13
+ // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
14
+ // ============================================================
15
+
16
+ function transitionEnd() {
17
+ var el = document.createElement('bootstrap')
18
+
19
+ var transEndEventNames = {
20
+ WebkitTransition : 'webkitTransitionEnd',
21
+ MozTransition : 'transitionend',
22
+ OTransition : 'oTransitionEnd otransitionend',
23
+ transition : 'transitionend'
24
+ }
25
+
26
+ for (var name in transEndEventNames) {
27
+ if (el.style[name] !== undefined) {
28
+ return { end: transEndEventNames[name] }
29
+ }
30
+ }
31
+
32
+ return false // explicit for ie8 ( ._.)
33
+ }
34
+
35
+ // http://blog.alexmaccaw.com/css-transitions
36
+ $.fn.emulateTransitionEnd = function (duration) {
37
+ var called = false
38
+ var $el = this
39
+ $(this).one('bsTransitionEnd', function () { called = true })
40
+ var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
41
+ setTimeout(callback, duration)
42
+ return this
43
+ }
44
+
45
+ $(function () {
46
+ $.support.transition = transitionEnd()
47
+
48
+ if (!$.support.transition) return
49
+
50
+ $.event.special.bsTransitionEnd = {
51
+ bindType: $.support.transition.end,
52
+ delegateType: $.support.transition.end,
53
+ handle: function (e) {
54
+ if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)
55
+ }
56
+ }
57
+ })
58
+
59
+ }(jQuery);
@@ -0,0 +1,9 @@
1
+ @function twbs-font-path($path) {
2
+ @return font-url($path, true);
3
+ }
4
+
5
+ @function twbs-image-path($path) {
6
+ @return image-url($path, true);
7
+ }
8
+
9
+ $bootstrap-sass-asset-helper: true;
@@ -0,0 +1,19 @@
1
+ // Mincer asset helper functions
2
+ //
3
+ // This must be imported into a .css.ejs.scss file.
4
+ // Then, <% %>-interpolations will be parsed as strings by Sass, and evaluated by EJS after Sass compilation.
5
+
6
+
7
+ @function twbs-font-path($path) {
8
+ // do something like following
9
+ // from "path/to/font.ext#suffix" to "<%- asset_path(path/to/font.ext)) + #suffix %>"
10
+ // from "path/to/font.ext?#suffix" to "<%- asset_path(path/to/font.ext)) + ?#suffix %>"
11
+ // or from "path/to/font.ext" just "<%- asset_path(path/to/font.ext)) %>"
12
+ @return "<%- asset_path("#{$path}".replace(/[#?].*$/, '')) + "#{$path}".replace(/(^[^#?]*)([#?]?.*$)/, '$2') %>";
13
+ }
14
+
15
+ @function twbs-image-path($file) {
16
+ @return "<%- asset_path("#{$file}") %>";
17
+ }
18
+
19
+ $bootstrap-sass-asset-helper: true;
@@ -0,0 +1,9 @@
1
+ @function twbs-font-path($path) {
2
+ @return font-path($path);
3
+ }
4
+
5
+ @function twbs-image-path($path) {
6
+ @return image-path($path);
7
+ }
8
+
9
+ $bootstrap-sass-asset-helper: true;
@@ -0,0 +1,56 @@
1
+ /*!
2
+ * Bootstrap v3.3.5 (http://getbootstrap.com)
3
+ * Copyright 2011-2015 Twitter, Inc.
4
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ */
6
+
7
+ // Core variables and mixins
8
+ @import "bootstrap/variables";
9
+ @import "bootstrap/mixins";
10
+
11
+ // Reset and dependencies
12
+ @import "bootstrap/normalize";
13
+ @import "bootstrap/print";
14
+ @import "bootstrap/glyphicons";
15
+
16
+ // Core CSS
17
+ @import "bootstrap/scaffolding";
18
+ @import "bootstrap/type";
19
+ @import "bootstrap/code";
20
+ @import "bootstrap/grid";
21
+ @import "bootstrap/tables";
22
+ @import "bootstrap/forms";
23
+ @import "bootstrap/buttons";
24
+
25
+ // Components
26
+ @import "bootstrap/component-animations";
27
+ @import "bootstrap/dropdowns";
28
+ @import "bootstrap/button-groups";
29
+ @import "bootstrap/input-groups";
30
+ @import "bootstrap/navs";
31
+ @import "bootstrap/navbar";
32
+ @import "bootstrap/breadcrumbs";
33
+ @import "bootstrap/pagination";
34
+ @import "bootstrap/pager";
35
+ @import "bootstrap/labels";
36
+ @import "bootstrap/badges";
37
+ @import "bootstrap/jumbotron";
38
+ @import "bootstrap/thumbnails";
39
+ @import "bootstrap/alerts";
40
+ @import "bootstrap/progress-bars";
41
+ @import "bootstrap/media";
42
+ @import "bootstrap/list-group";
43
+ @import "bootstrap/panels";
44
+ @import "bootstrap/responsive-embed";
45
+ @import "bootstrap/wells";
46
+ @import "bootstrap/close";
47
+
48
+ // Components w/ JavaScript
49
+ @import "bootstrap/modals";
50
+ @import "bootstrap/tooltip";
51
+ @import "bootstrap/popovers";
52
+ @import "bootstrap/carousel";
53
+
54
+ // Utility classes
55
+ @import "bootstrap/utilities";
56
+ @import "bootstrap/responsive-utilities";
@@ -0,0 +1,411 @@
1
+ // The following features have been deprecated and will be removed in the next MAJOR version release
2
+
3
+ @mixin inline-block {
4
+ display: inline-block;
5
+
6
+ @warn "The inline-block mixin is deprecated and will be removed in the next major version release";
7
+ }
8
+
9
+ @mixin button ($style: simple, $base-color: #4294f0, $text-size: inherit, $padding: 7px 18px) {
10
+
11
+ @if type-of($style) == string and type-of($base-color) == color {
12
+ @include buttonstyle($style, $base-color, $text-size, $padding);
13
+ }
14
+
15
+ @if type-of($style) == string and type-of($base-color) == number {
16
+ $padding: $text-size;
17
+ $text-size: $base-color;
18
+ $base-color: #4294f0;
19
+
20
+ @if $padding == inherit {
21
+ $padding: 7px 18px;
22
+ }
23
+
24
+ @include buttonstyle($style, $base-color, $text-size, $padding);
25
+ }
26
+
27
+ @if type-of($style) == color and type-of($base-color) == color {
28
+ $base-color: $style;
29
+ $style: simple;
30
+ @include buttonstyle($style, $base-color, $text-size, $padding);
31
+ }
32
+
33
+ @if type-of($style) == color and type-of($base-color) == number {
34
+ $padding: $text-size;
35
+ $text-size: $base-color;
36
+ $base-color: $style;
37
+ $style: simple;
38
+
39
+ @if $padding == inherit {
40
+ $padding: 7px 18px;
41
+ }
42
+
43
+ @include buttonstyle($style, $base-color, $text-size, $padding);
44
+ }
45
+
46
+ @if type-of($style) == number {
47
+ $padding: $base-color;
48
+ $text-size: $style;
49
+ $base-color: #4294f0;
50
+ $style: simple;
51
+
52
+ @if $padding == #4294f0 {
53
+ $padding: 7px 18px;
54
+ }
55
+
56
+ @include buttonstyle($style, $base-color, $text-size, $padding);
57
+ }
58
+
59
+ &:disabled {
60
+ cursor: not-allowed;
61
+ opacity: 0.5;
62
+ }
63
+
64
+ @warn "The button mixin is deprecated and will be removed in the next major version release";
65
+ }
66
+
67
+ // Selector Style Button
68
+ @mixin buttonstyle($type, $b-color, $t-size, $pad) {
69
+ // Grayscale button
70
+ @if $type == simple and $b-color == grayscale($b-color) {
71
+ @include simple($b-color, true, $t-size, $pad);
72
+ }
73
+
74
+ @if $type == shiny and $b-color == grayscale($b-color) {
75
+ @include shiny($b-color, true, $t-size, $pad);
76
+ }
77
+
78
+ @if $type == pill and $b-color == grayscale($b-color) {
79
+ @include pill($b-color, true, $t-size, $pad);
80
+ }
81
+
82
+ @if $type == flat and $b-color == grayscale($b-color) {
83
+ @include flat($b-color, true, $t-size, $pad);
84
+ }
85
+
86
+ // Colored button
87
+ @if $type == simple {
88
+ @include simple($b-color, false, $t-size, $pad);
89
+ }
90
+
91
+ @else if $type == shiny {
92
+ @include shiny($b-color, false, $t-size, $pad);
93
+ }
94
+
95
+ @else if $type == pill {
96
+ @include pill($b-color, false, $t-size, $pad);
97
+ }
98
+
99
+ @else if $type == flat {
100
+ @include flat($b-color, false, $t-size, $pad);
101
+ }
102
+ }
103
+
104
+ // Simple Button
105
+ @mixin simple($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) {
106
+ $color: hsl(0, 0, 100%);
107
+ $border: adjust-color($base-color, $saturation: 9%, $lightness: -14%);
108
+ $inset-shadow: adjust-color($base-color, $saturation: -8%, $lightness: 15%);
109
+ $stop-gradient: adjust-color($base-color, $saturation: 9%, $lightness: -11%);
110
+ $text-shadow: adjust-color($base-color, $saturation: 15%, $lightness: -18%);
111
+
112
+ @if is-light($base-color) {
113
+ $color: hsl(0, 0, 20%);
114
+ $text-shadow: adjust-color($base-color, $saturation: 10%, $lightness: 4%);
115
+ }
116
+
117
+ @if $grayscale == true {
118
+ $border: grayscale($border);
119
+ $inset-shadow: grayscale($inset-shadow);
120
+ $stop-gradient: grayscale($stop-gradient);
121
+ $text-shadow: grayscale($text-shadow);
122
+ }
123
+
124
+ border: 1px solid $border;
125
+ border-radius: 3px;
126
+ box-shadow: inset 0 1px 0 0 $inset-shadow;
127
+ color: $color;
128
+ display: inline-block;
129
+ font-size: $textsize;
130
+ font-weight: bold;
131
+ @include linear-gradient ($base-color, $stop-gradient);
132
+ padding: $padding;
133
+ text-decoration: none;
134
+ text-shadow: 0 1px 0 $text-shadow;
135
+ background-clip: padding-box;
136
+
137
+ &:hover:not(:disabled) {
138
+ $base-color-hover: adjust-color($base-color, $saturation: -4%, $lightness: -5%);
139
+ $inset-shadow-hover: adjust-color($base-color, $saturation: -7%, $lightness: 5%);
140
+ $stop-gradient-hover: adjust-color($base-color, $saturation: 8%, $lightness: -14%);
141
+
142
+ @if $grayscale == true {
143
+ $base-color-hover: grayscale($base-color-hover);
144
+ $inset-shadow-hover: grayscale($inset-shadow-hover);
145
+ $stop-gradient-hover: grayscale($stop-gradient-hover);
146
+ }
147
+
148
+ @include linear-gradient ($base-color-hover, $stop-gradient-hover);
149
+
150
+ box-shadow: inset 0 1px 0 0 $inset-shadow-hover;
151
+ cursor: pointer;
152
+ }
153
+
154
+ &:active:not(:disabled),
155
+ &:focus:not(:disabled) {
156
+ $border-active: adjust-color($base-color, $saturation: 9%, $lightness: -14%);
157
+ $inset-shadow-active: adjust-color($base-color, $saturation: 7%, $lightness: -17%);
158
+
159
+ @if $grayscale == true {
160
+ $border-active: grayscale($border-active);
161
+ $inset-shadow-active: grayscale($inset-shadow-active);
162
+ }
163
+
164
+ border: 1px solid $border-active;
165
+ box-shadow: inset 0 0 8px 4px $inset-shadow-active, inset 0 0 8px 4px $inset-shadow-active;
166
+ }
167
+ }
168
+
169
+ // Shiny Button
170
+ @mixin shiny($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) {
171
+ $color: hsl(0, 0, 100%);
172
+ $border: adjust-color($base-color, $red: -117, $green: -111, $blue: -81);
173
+ $border-bottom: adjust-color($base-color, $red: -126, $green: -127, $blue: -122);
174
+ $fourth-stop: adjust-color($base-color, $red: -79, $green: -70, $blue: -46);
175
+ $inset-shadow: adjust-color($base-color, $red: 37, $green: 29, $blue: 12);
176
+ $second-stop: adjust-color($base-color, $red: -56, $green: -50, $blue: -33);
177
+ $text-shadow: adjust-color($base-color, $red: -140, $green: -141, $blue: -114);
178
+ $third-stop: adjust-color($base-color, $red: -86, $green: -75, $blue: -48);
179
+
180
+ @if is-light($base-color) {
181
+ $color: hsl(0, 0, 20%);
182
+ $text-shadow: adjust-color($base-color, $saturation: 10%, $lightness: 4%);
183
+ }
184
+
185
+ @if $grayscale == true {
186
+ $border: grayscale($border);
187
+ $border-bottom: grayscale($border-bottom);
188
+ $fourth-stop: grayscale($fourth-stop);
189
+ $inset-shadow: grayscale($inset-shadow);
190
+ $second-stop: grayscale($second-stop);
191
+ $text-shadow: grayscale($text-shadow);
192
+ $third-stop: grayscale($third-stop);
193
+ }
194
+
195
+ @include linear-gradient(top, $base-color 0%, $second-stop 50%, $third-stop 50%, $fourth-stop 100%);
196
+
197
+ border: 1px solid $border;
198
+ border-bottom: 1px solid $border-bottom;
199
+ border-radius: 5px;
200
+ box-shadow: inset 0 1px 0 0 $inset-shadow;
201
+ color: $color;
202
+ display: inline-block;
203
+ font-size: $textsize;
204
+ font-weight: bold;
205
+ padding: $padding;
206
+ text-align: center;
207
+ text-decoration: none;
208
+ text-shadow: 0 -1px 1px $text-shadow;
209
+
210
+ &:hover:not(:disabled) {
211
+ $first-stop-hover: adjust-color($base-color, $red: -13, $green: -15, $blue: -18);
212
+ $second-stop-hover: adjust-color($base-color, $red: -66, $green: -62, $blue: -51);
213
+ $third-stop-hover: adjust-color($base-color, $red: -93, $green: -85, $blue: -66);
214
+ $fourth-stop-hover: adjust-color($base-color, $red: -86, $green: -80, $blue: -63);
215
+
216
+ @if $grayscale == true {
217
+ $first-stop-hover: grayscale($first-stop-hover);
218
+ $second-stop-hover: grayscale($second-stop-hover);
219
+ $third-stop-hover: grayscale($third-stop-hover);
220
+ $fourth-stop-hover: grayscale($fourth-stop-hover);
221
+ }
222
+
223
+ @include linear-gradient(top, $first-stop-hover 0%,
224
+ $second-stop-hover 50%,
225
+ $third-stop-hover 50%,
226
+ $fourth-stop-hover 100%);
227
+ cursor: pointer;
228
+ }
229
+
230
+ &:active:not(:disabled),
231
+ &:focus:not(:disabled) {
232
+ $inset-shadow-active: adjust-color($base-color, $red: -111, $green: -116, $blue: -122);
233
+
234
+ @if $grayscale == true {
235
+ $inset-shadow-active: grayscale($inset-shadow-active);
236
+ }
237
+
238
+ box-shadow: inset 0 0 20px 0 $inset-shadow-active;
239
+ }
240
+ }
241
+
242
+ // Pill Button
243
+ @mixin pill($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) {
244
+ $color: hsl(0, 0, 100%);
245
+ $border-bottom: adjust-color($base-color, $hue: 8, $saturation: -11%, $lightness: -26%);
246
+ $border-sides: adjust-color($base-color, $hue: 4, $saturation: -21%, $lightness: -21%);
247
+ $border-top: adjust-color($base-color, $hue: -1, $saturation: -30%, $lightness: -15%);
248
+ $inset-shadow: adjust-color($base-color, $hue: -1, $saturation: -1%, $lightness: 7%);
249
+ $stop-gradient: adjust-color($base-color, $hue: 8, $saturation: 14%, $lightness: -10%);
250
+ $text-shadow: adjust-color($base-color, $hue: 5, $saturation: -19%, $lightness: -15%);
251
+
252
+ @if is-light($base-color) {
253
+ $color: hsl(0, 0, 20%);
254
+ $text-shadow: adjust-color($base-color, $saturation: 10%, $lightness: 4%);
255
+ }
256
+
257
+ @if $grayscale == true {
258
+ $border-bottom: grayscale($border-bottom);
259
+ $border-sides: grayscale($border-sides);
260
+ $border-top: grayscale($border-top);
261
+ $inset-shadow: grayscale($inset-shadow);
262
+ $stop-gradient: grayscale($stop-gradient);
263
+ $text-shadow: grayscale($text-shadow);
264
+ }
265
+
266
+ border: 1px solid $border-top;
267
+ border-color: $border-top $border-sides $border-bottom;
268
+ border-radius: 16px;
269
+ box-shadow: inset 0 1px 0 0 $inset-shadow;
270
+ color: $color;
271
+ display: inline-block;
272
+ font-size: $textsize;
273
+ font-weight: normal;
274
+ line-height: 1;
275
+ @include linear-gradient ($base-color, $stop-gradient);
276
+ padding: $padding;
277
+ text-align: center;
278
+ text-decoration: none;
279
+ text-shadow: 0 -1px 1px $text-shadow;
280
+ background-clip: padding-box;
281
+
282
+ &:hover:not(:disabled) {
283
+ $base-color-hover: adjust-color($base-color, $lightness: -4.5%);
284
+ $border-bottom: adjust-color($base-color, $hue: 8, $saturation: 13.5%, $lightness: -32%);
285
+ $border-sides: adjust-color($base-color, $hue: 4, $saturation: -2%, $lightness: -27%);
286
+ $border-top: adjust-color($base-color, $hue: -1, $saturation: -17%, $lightness: -21%);
287
+ $inset-shadow-hover: adjust-color($base-color, $saturation: -1%, $lightness: 3%);
288
+ $stop-gradient-hover: adjust-color($base-color, $hue: 8, $saturation: -4%, $lightness: -15.5%);
289
+ $text-shadow-hover: adjust-color($base-color, $hue: 5, $saturation: -5%, $lightness: -22%);
290
+
291
+ @if $grayscale == true {
292
+ $base-color-hover: grayscale($base-color-hover);
293
+ $border-bottom: grayscale($border-bottom);
294
+ $border-sides: grayscale($border-sides);
295
+ $border-top: grayscale($border-top);
296
+ $inset-shadow-hover: grayscale($inset-shadow-hover);
297
+ $stop-gradient-hover: grayscale($stop-gradient-hover);
298
+ $text-shadow-hover: grayscale($text-shadow-hover);
299
+ }
300
+
301
+ @include linear-gradient ($base-color-hover, $stop-gradient-hover);
302
+
303
+ background-clip: padding-box;
304
+ border: 1px solid $border-top;
305
+ border-color: $border-top $border-sides $border-bottom;
306
+ box-shadow: inset 0 1px 0 0 $inset-shadow-hover;
307
+ cursor: pointer;
308
+ text-shadow: 0 -1px 1px $text-shadow-hover;
309
+ }
310
+
311
+ &:active:not(:disabled),
312
+ &:focus:not(:disabled) {
313
+ $active-color: adjust-color($base-color, $hue: 4, $saturation: -12%, $lightness: -10%);
314
+ $border-active: adjust-color($base-color, $hue: 6, $saturation: -2.5%, $lightness: -30%);
315
+ $border-bottom-active: adjust-color($base-color, $hue: 11, $saturation: 6%, $lightness: -31%);
316
+ $inset-shadow-active: adjust-color($base-color, $hue: 9, $saturation: 2%, $lightness: -21.5%);
317
+ $text-shadow-active: adjust-color($base-color, $hue: 5, $saturation: -12%, $lightness: -21.5%);
318
+
319
+ @if $grayscale == true {
320
+ $active-color: grayscale($active-color);
321
+ $border-active: grayscale($border-active);
322
+ $border-bottom-active: grayscale($border-bottom-active);
323
+ $inset-shadow-active: grayscale($inset-shadow-active);
324
+ $text-shadow-active: grayscale($text-shadow-active);
325
+ }
326
+
327
+ background: $active-color;
328
+ border: 1px solid $border-active;
329
+ border-bottom: 1px solid $border-bottom-active;
330
+ box-shadow: inset 0 0 6px 3px $inset-shadow-active;
331
+ text-shadow: 0 -1px 1px $text-shadow-active;
332
+ }
333
+ }
334
+
335
+ // Flat Button
336
+ @mixin flat($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) {
337
+ $color: hsl(0, 0, 100%);
338
+
339
+ @if is-light($base-color) {
340
+ $color: hsl(0, 0, 20%);
341
+ }
342
+
343
+ background-color: $base-color;
344
+ border-radius: 3px;
345
+ border: 0;
346
+ color: $color;
347
+ display: inline-block;
348
+ font-size: $textsize;
349
+ font-weight: bold;
350
+ padding: $padding;
351
+ text-decoration: none;
352
+ background-clip: padding-box;
353
+
354
+ &:hover:not(:disabled){
355
+ $base-color-hover: adjust-color($base-color, $saturation: 4%, $lightness: 5%);
356
+
357
+ @if $grayscale == true {
358
+ $base-color-hover: grayscale($base-color-hover);
359
+ }
360
+
361
+ background-color: $base-color-hover;
362
+ cursor: pointer;
363
+ }
364
+
365
+ &:active:not(:disabled),
366
+ &:focus:not(:disabled) {
367
+ $base-color-active: adjust-color($base-color, $saturation: -4%, $lightness: -5%);
368
+
369
+ @if $grayscale == true {
370
+ $base-color-active: grayscale($base-color-active);
371
+ }
372
+
373
+ background-color: $base-color-active;
374
+ cursor: pointer;
375
+ }
376
+ }
377
+
378
+ // Flexible grid
379
+ @function flex-grid($columns, $container-columns: $fg-max-columns) {
380
+ $width: $columns * $fg-column + ($columns - 1) * $fg-gutter;
381
+ $container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter;
382
+ @return percentage($width / $container-width);
383
+
384
+ @warn "The flex-grid function is deprecated and will be removed in the next major version release";
385
+ }
386
+
387
+ // Flexible gutter
388
+ @function flex-gutter($container-columns: $fg-max-columns, $gutter: $fg-gutter) {
389
+ $container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter;
390
+ @return percentage($gutter / $container-width);
391
+
392
+ @warn "The flex-gutter function is deprecated and will be removed in the next major version release";
393
+ }
394
+
395
+ @function grid-width($n) {
396
+ @return $n * $gw-column + ($n - 1) * $gw-gutter;
397
+
398
+ @warn "The grid-width function is deprecated and will be removed in the next major version release";
399
+ }
400
+
401
+ @function golden-ratio($value, $increment) {
402
+ @return modular-scale($increment, $value, $ratio: $golden);
403
+
404
+ @warn "The golden-ratio function is deprecated and will be removed in the next major version release. Please use the modular-scale function, instead.";
405
+ }
406
+
407
+ @mixin box-sizing($box) {
408
+ @include prefixer(box-sizing, $box, webkit moz spec);
409
+
410
+ @warn "The box-sizing mixin is deprecated and will be removed in the next major version release. This property can now be used un-prefixed.";
411
+ }