foundation-rails 6.3.1.0 → 6.4.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (139) hide show
  1. checksums.yaml +4 -4
  2. data/bower.json +3 -3
  3. data/lib/foundation/rails/version.rb +1 -1
  4. data/lib/generators/foundation/install_generator.rb +1 -1
  5. data/lib/generators/foundation/templates/_settings.scss +291 -48
  6. data/vendor/assets/js/entries/foundation-plugins.js +25 -0
  7. data/vendor/assets/js/entries/foundation.js +101 -0
  8. data/vendor/assets/js/entries/plugins/foundation.abide.js +4 -0
  9. data/vendor/assets/js/entries/plugins/foundation.accordion.js +4 -0
  10. data/vendor/assets/js/entries/plugins/foundation.accordionMenu.js +5 -0
  11. data/vendor/assets/js/entries/plugins/foundation.core.js +21 -0
  12. data/vendor/assets/js/entries/plugins/foundation.drilldown.js +4 -0
  13. data/vendor/assets/js/entries/plugins/foundation.dropdown.js +5 -0
  14. data/vendor/assets/js/entries/plugins/foundation.dropdownMenu.js +4 -0
  15. data/vendor/assets/js/entries/plugins/foundation.equalizer.js +4 -0
  16. data/vendor/assets/js/entries/plugins/foundation.interchange.js +4 -0
  17. data/vendor/assets/js/entries/plugins/foundation.magellan.js +4 -0
  18. data/vendor/assets/js/entries/plugins/foundation.offcanvas.js +4 -0
  19. data/vendor/assets/js/entries/plugins/foundation.orbit.js +5 -0
  20. data/vendor/assets/js/entries/plugins/foundation.responsiveAccordionTabs.js +5 -0
  21. data/vendor/assets/js/entries/plugins/foundation.responsiveMenu.js +5 -0
  22. data/vendor/assets/js/entries/plugins/foundation.responsiveToggle.js +5 -0
  23. data/vendor/assets/js/entries/plugins/foundation.reveal.js +4 -0
  24. data/vendor/assets/js/entries/plugins/foundation.slider.js +5 -0
  25. data/vendor/assets/js/entries/plugins/foundation.smoothScroll.js +5 -0
  26. data/vendor/assets/js/entries/plugins/foundation.sticky.js +5 -0
  27. data/vendor/assets/js/entries/plugins/foundation.tabs.js +5 -0
  28. data/vendor/assets/js/entries/plugins/foundation.toggler.js +5 -0
  29. data/vendor/assets/js/entries/plugins/foundation.tooltip.js +4 -0
  30. data/vendor/assets/js/entries/plugins/foundation.util.box.js +4 -0
  31. data/vendor/assets/js/entries/plugins/foundation.util.imageLoader.js +5 -0
  32. data/vendor/assets/js/entries/plugins/foundation.util.keyboard.js +4 -0
  33. data/vendor/assets/js/entries/plugins/foundation.util.mediaQuery.js +4 -0
  34. data/vendor/assets/js/entries/plugins/foundation.util.motion.js +5 -0
  35. data/vendor/assets/js/entries/plugins/foundation.util.nest.js +5 -0
  36. data/vendor/assets/js/entries/plugins/foundation.util.timer.js +5 -0
  37. data/vendor/assets/js/entries/plugins/foundation.util.touch.js +7 -0
  38. data/vendor/assets/js/entries/plugins/foundation.util.triggers.js +5 -0
  39. data/vendor/assets/js/foundation.abide.js.es6 +18 -15
  40. data/vendor/assets/js/foundation.accordion.js.es6 +37 -23
  41. data/vendor/assets/js/foundation.accordionMenu.js.es6 +96 -51
  42. data/vendor/assets/js/foundation.core.js.es6 +46 -87
  43. data/vendor/assets/js/foundation.drilldown.js.es6 +47 -29
  44. data/vendor/assets/js/foundation.dropdown.js.es6 +84 -122
  45. data/vendor/assets/js/foundation.dropdownMenu.js.es6 +44 -28
  46. data/vendor/assets/js/foundation.equalizer.js.es6 +18 -17
  47. data/vendor/assets/js/foundation.interchange.js.es6 +26 -19
  48. data/vendor/assets/js/foundation.js.es6 +8 -3
  49. data/vendor/assets/js/foundation.magellan.js.es6 +36 -30
  50. data/vendor/assets/js/foundation.offcanvas.js.es6 +148 -36
  51. data/vendor/assets/js/foundation.orbit.js.es6 +26 -18
  52. data/vendor/assets/js/foundation.plugin.js.es6 +54 -0
  53. data/vendor/assets/js/foundation.positionable.js.es6 +206 -0
  54. data/vendor/assets/js/{foundation.zf.responsiveAccordionTabs.js.es6 → foundation.responsiveAccordionTabs.js.es6} +33 -30
  55. data/vendor/assets/js/foundation.responsiveMenu.js.es6 +37 -29
  56. data/vendor/assets/js/foundation.responsiveToggle.js.es6 +17 -16
  57. data/vendor/assets/js/foundation.reveal.js.es6 +61 -79
  58. data/vendor/assets/js/foundation.slider.js.es6 +33 -18
  59. data/vendor/assets/js/foundation.smoothScroll.js.es6 +135 -0
  60. data/vendor/assets/js/foundation.sticky.js.es6 +25 -17
  61. data/vendor/assets/js/foundation.tabs.js.es6 +35 -27
  62. data/vendor/assets/js/foundation.toggler.js.es6 +15 -13
  63. data/vendor/assets/js/foundation.tooltip.js.es6 +100 -108
  64. data/vendor/assets/js/foundation.util.box.js.es6 +114 -78
  65. data/vendor/assets/js/foundation.util.core.js.es6 +52 -0
  66. data/vendor/assets/js/foundation.util.imageLoader.js.es6 +45 -0
  67. data/vendor/assets/js/foundation.util.keyboard.js.es6 +41 -31
  68. data/vendor/assets/js/foundation.util.mediaQuery.js.es6 +59 -55
  69. data/vendor/assets/js/foundation.util.motion.js.es6 +4 -5
  70. data/vendor/assets/js/foundation.util.nest.js.es6 +9 -23
  71. data/vendor/assets/js/{foundation.util.timerAndImageLoader.js.es6 → foundation.util.timer.js.es6} +2 -42
  72. data/vendor/assets/js/foundation.util.touch.js.es6 +91 -294
  73. data/vendor/assets/js/foundation.util.triggers.js.es6 +199 -141
  74. data/vendor/assets/scss/_global.scss +29 -1
  75. data/vendor/assets/scss/components/_accordion-menu.scss +148 -13
  76. data/vendor/assets/scss/components/_accordion.scss +5 -0
  77. data/vendor/assets/scss/components/_breadcrumbs.scss +26 -9
  78. data/vendor/assets/scss/components/_button-group.scss +4 -4
  79. data/vendor/assets/scss/components/_button.scss +59 -12
  80. data/vendor/assets/scss/components/_card.scss +10 -2
  81. data/vendor/assets/scss/components/_drilldown.scss +90 -41
  82. data/vendor/assets/scss/components/_dropdown-menu.scss +52 -6
  83. data/vendor/assets/scss/components/_dropdown.scss +8 -1
  84. data/vendor/assets/scss/components/_flex.scss +85 -2
  85. data/vendor/assets/scss/components/_menu.scss +267 -162
  86. data/vendor/assets/scss/components/_off-canvas.scss +159 -45
  87. data/vendor/assets/scss/components/_pagination.scss +1 -1
  88. data/vendor/assets/scss/components/_reveal.scss +13 -11
  89. data/vendor/assets/scss/components/_slider.scss +0 -1
  90. data/vendor/assets/scss/components/_sticky.scss +1 -0
  91. data/vendor/assets/scss/components/_table.scss +7 -6
  92. data/vendor/assets/scss/components/_tabs.scss +1 -1
  93. data/vendor/assets/scss/components/_title-bar.scss +1 -1
  94. data/vendor/assets/scss/components/_tooltip.scss +74 -21
  95. data/vendor/assets/scss/components/_top-bar.scss +2 -0
  96. data/vendor/assets/scss/forms/_fieldset.scss +0 -1
  97. data/vendor/assets/scss/forms/_meter.scss +7 -1
  98. data/vendor/assets/scss/forms/_select.scss +4 -3
  99. data/vendor/assets/scss/forms/_text.scss +11 -2
  100. data/vendor/assets/scss/foundation.scss +17 -3
  101. data/vendor/assets/scss/grid/_flex-grid.scss +3 -52
  102. data/vendor/assets/scss/prototype/_arrow.scss +36 -0
  103. data/vendor/assets/scss/prototype/_border-box.scss +35 -0
  104. data/vendor/assets/scss/prototype/_border-none.scss +35 -0
  105. data/vendor/assets/scss/prototype/_bordered.scss +54 -0
  106. data/vendor/assets/scss/prototype/_box.scss +23 -0
  107. data/vendor/assets/scss/prototype/_display.scss +50 -0
  108. data/vendor/assets/scss/prototype/_font-styling.scss +95 -0
  109. data/vendor/assets/scss/prototype/_list-style-type.scss +95 -0
  110. data/vendor/assets/scss/prototype/_overflow.scss +72 -0
  111. data/vendor/assets/scss/prototype/_position.scss +114 -0
  112. data/vendor/assets/scss/prototype/_prototype.scss +91 -0
  113. data/vendor/assets/scss/prototype/_relation.scss +157 -0
  114. data/vendor/assets/scss/prototype/_rotate.scss +31 -0
  115. data/vendor/assets/scss/prototype/_rounded.scss +54 -0
  116. data/vendor/assets/scss/prototype/_separator.scss +96 -0
  117. data/vendor/assets/scss/prototype/_shadow.scss +43 -0
  118. data/vendor/assets/scss/prototype/_sizing.scss +73 -0
  119. data/vendor/assets/scss/prototype/_spacing.scss +204 -0
  120. data/vendor/assets/scss/prototype/_text-decoration.scss +48 -0
  121. data/vendor/assets/scss/prototype/_text-transformation.scss +48 -0
  122. data/vendor/assets/scss/prototype/_text-utilities.scss +88 -0
  123. data/vendor/assets/scss/prototype/_typescale.scss +20 -0
  124. data/vendor/assets/scss/settings/_settings.scss +291 -48
  125. data/vendor/assets/scss/typography/_base.scss +2 -2
  126. data/vendor/assets/scss/typography/_helpers.scss +6 -4
  127. data/vendor/assets/scss/util/_breakpoint.scss +60 -1
  128. data/vendor/assets/scss/util/_color.scss +8 -5
  129. data/vendor/assets/scss/util/_mixins.scss +45 -5
  130. data/vendor/assets/scss/xy-grid/_cell.scss +179 -0
  131. data/vendor/assets/scss/xy-grid/_classes.scss +455 -0
  132. data/vendor/assets/scss/xy-grid/_collapse.scss +54 -0
  133. data/vendor/assets/scss/xy-grid/_frame.scss +54 -0
  134. data/vendor/assets/scss/xy-grid/_grid.scss +56 -0
  135. data/vendor/assets/scss/xy-grid/_gutters.scss +45 -0
  136. data/vendor/assets/scss/xy-grid/_layout.scss +33 -0
  137. data/vendor/assets/scss/xy-grid/_position.scss +28 -0
  138. data/vendor/assets/scss/xy-grid/_xy-grid.scss +52 -0
  139. metadata +73 -4
@@ -0,0 +1,91 @@
1
+ // Foundation for Sites by ZURB
2
+ // foundation.zurb.com
3
+ // Licensed under MIT Open Source
4
+
5
+ ////
6
+ /// @group prototype
7
+ ////
8
+
9
+ // Relational Mixins
10
+ @import 'relation';
11
+
12
+ // Box Mixin
13
+ @import 'box';
14
+
15
+ // Rotate Mixin
16
+ @import 'rotate';
17
+
18
+ // Typescale
19
+ @import 'typescale';
20
+
21
+ // Text utilities
22
+ @import 'text-utilities';
23
+
24
+ // Text transformation classes
25
+ @import 'text-transformation';
26
+
27
+ // Text Decoration classes
28
+ @import 'text-decoration';
29
+
30
+ // Font Styling
31
+ @import 'font-styling';
32
+
33
+ // List Style type
34
+ @import 'list-style-type';
35
+
36
+ // Rounded Utility
37
+ @import 'rounded';
38
+
39
+ // Bordered Utility
40
+ @import 'bordered';
41
+
42
+ // Shadow Utility
43
+ @import 'shadow';
44
+
45
+ // Arrow Utility
46
+ @import 'arrow';
47
+
48
+ // Separator Utility
49
+ @import 'separator';
50
+
51
+ // Overflow helper classes
52
+ @import 'overflow';
53
+
54
+ // Display classes
55
+ @import 'display';
56
+
57
+ // Position Helpers
58
+ @import 'position';
59
+
60
+ // Border box
61
+ @import 'border-box';
62
+
63
+ // Border none Utilty
64
+ @import 'border-none';
65
+
66
+ // Sizing Utilities
67
+ @import 'sizing';
68
+
69
+ // Spacing Utilities
70
+ @import 'spacing';
71
+
72
+ @mixin foundation-prototype-classes {
73
+ @include foundation-prototype-typescale;
74
+ @include foundation-prototype-text-utilities;
75
+ @include foundation-prototype-text-transformation;
76
+ @include foundation-prototype-text-decoration;
77
+ @include foundation-prototype-font-styling;
78
+ @include foundation-prototype-list-style-type;
79
+ @include foundation-prototype-rounded;
80
+ @include foundation-prototype-bordered;
81
+ @include foundation-prototype-shadow;
82
+ @include foundation-prototype-arrow;
83
+ @include foundation-prototype-separator;
84
+ @include foundation-prototype-overflow;
85
+ @include foundation-prototype-display;
86
+ @include foundation-prototype-position;
87
+ @include foundation-prototype-border-box;
88
+ @include foundation-prototype-border-none;
89
+ @include foundation-prototype-sizing;
90
+ @include foundation-prototype-spacing;
91
+ }
@@ -0,0 +1,157 @@
1
+ /// Select all children from the first to `$num`.
2
+ /// @param {Number} $num[] First `n` numbers of total children
3
+ @mixin first($num) {
4
+ @if $num == 1 {
5
+ &:first-child {
6
+ @content;
7
+ }
8
+ } @else {
9
+ &:nth-child(-n + #{$num}) {
10
+ @content;
11
+ }
12
+ }
13
+ }
14
+
15
+ /// Select the first exact child
16
+ @mixin first-child {
17
+ &:first-of-type {
18
+ @content;
19
+ }
20
+ }
21
+
22
+ /// Select all children from the last to `$num`.
23
+ /// @param {Number} $num[] Last `n` numbers of total children
24
+ @mixin last($num) {
25
+ &:nth-last-child(-n + #{$num}) {
26
+ @content;
27
+ }
28
+ }
29
+
30
+ /// Select the last exact child
31
+ @mixin last-child {
32
+ &:last-of-type {
33
+ @content;
34
+ }
35
+ }
36
+
37
+ /// Select children every `$num`.
38
+ /// @param {Number} $num[] Every `n` number of all children
39
+ @mixin every($num) {
40
+ &:nth-child(#{$num}n) {
41
+ @content;
42
+ }
43
+ }
44
+
45
+ /// Select only the first and last child.
46
+ @mixin first-last {
47
+ &:first-child,
48
+ &:last-child {
49
+ @content;
50
+ }
51
+ }
52
+
53
+ /// Select all children after the first to `$num`.
54
+ /// @param {Number} $num[] After First `n` numbers of total children
55
+ @mixin after-first($num) {
56
+ &:nth-child(n + #{$num + 1}) {
57
+ @content;
58
+ }
59
+ }
60
+
61
+ /// Select all children before `$num` from the last.
62
+ /// @param {Number} $num[] From Last `n` numbers of total children
63
+ @mixin from-last($num) {
64
+ &:nth-last-child(#{$num}) {
65
+ @content;
66
+ }
67
+ }
68
+
69
+ /// Select the `$num` child from the first and the `$num` child from the last.
70
+ /// @param {Number} $num[] `n` number called from first and last
71
+ @mixin from-first-last($num) {
72
+ &:nth-child(#{$num}),
73
+ &:nth-last-child(#{$num}) {
74
+ @content;
75
+ }
76
+ }
77
+
78
+ /// Select all children but `$num`.
79
+ /// @param {Number} $num[] `n` number that should be excluded from all other children
80
+ @mixin all-but($num) {
81
+ &:not(:nth-child(#{$num})) {
82
+ @content;
83
+ }
84
+ }
85
+
86
+ /// Select all children between the `$num` first and the `$num` last.
87
+ /// @param {Number} $num[] `n` number excluded from first and last from all other children
88
+ @mixin all-but-first-last($num) {
89
+ &:nth-child(n + #{$num}):nth-last-child(n + #{$num}) {
90
+ @content;
91
+ }
92
+ }
93
+
94
+ /// Will only select the child if it’s unique. That means that if there are at least 2 children, the style will not be applied.
95
+ @mixin unique {
96
+ &:only-child {
97
+ @content;
98
+ }
99
+ }
100
+
101
+ /// Will only select children if they are not unique. That means that if there are at least 2 children, the style will be applied.
102
+ @mixin not-unique() {
103
+ &:not(:only-child) {
104
+ @content;
105
+ }
106
+ }
107
+
108
+ /// Select all children between `$first` and `$last`.
109
+ /// @param {Number} $first[] First `nth` number
110
+ /// @param {Number} $last[] Last `nth` number
111
+ @mixin between($first, $last) {
112
+ &:nth-child(n + #{$first}):nth-child(-n + #{$last}) {
113
+ @content;
114
+ }
115
+ }
116
+
117
+ /// Select all even children.
118
+ @mixin even {
119
+ &:nth-child(even) {
120
+ @content;
121
+ }
122
+ }
123
+
124
+ /// Select all even children between `$first` and `$last`.
125
+ /// @param {Number} $first[] First `nth` number
126
+ /// @param {Number} $last[] Last `nth` number
127
+ @mixin even-between($first, $last) {
128
+ &:nth-child(even):nth-child(n + #{$first}):nth-child(-n + #{$last}) {
129
+ @content;
130
+ }
131
+ }
132
+
133
+ /// Select all odd children.
134
+ @mixin odd {
135
+ &:nth-child(odd) {
136
+ @content;
137
+ }
138
+ }
139
+
140
+ /// Select all odd children between `$first` and `$last`.
141
+ /// @param {Number} $first[] First `nth` number
142
+ /// @param {Number} $last[] Last `nth` number
143
+ @mixin odd-between($first, $last) {
144
+ &:nth-child(odd):nth-child(n + #{$first}):nth-child(-n + #{$last}) {
145
+ @content;
146
+ }
147
+ }
148
+
149
+ /// Select all `$num` children between `$first` and `$last`.
150
+ /// @param {Number} $num[] Every `n` number between `$first` and `$last`.
151
+ /// @param {Number} $first[] First `n` number
152
+ /// @param {Number} $last[] Last `n` number
153
+ @mixin number-between($num, $first, $last) {
154
+ &:nth-child(#{$num}n):nth-child(n + #{$first}):nth-child(-n + #{$last}) {
155
+ @content;
156
+ }
157
+ }
@@ -0,0 +1,31 @@
1
+ // Foundation for Sites by ZURB
2
+ // foundation.zurb.com
3
+ // Licensed under MIT Open Source
4
+
5
+ ////
6
+ /// @group prototype-rotate
7
+ ////
8
+
9
+ /// Rotate Mixin: Rotate an element to a certain deg
10
+ /// @param {Number} $deg[] Degree of rotation
11
+ @mixin rotate($deg) {
12
+ transform:rotate($deg + deg);
13
+ }
14
+
15
+ /// RotateX Mixin: Rotate an element to a certain deg on X-Axis
16
+ /// @param {Number} $deg[] Degree of rotation
17
+ @mixin rotateX($deg) {
18
+ transform:rotateX($deg + deg);
19
+ }
20
+
21
+ /// RotateY Mixin: Rotate an element to a certain deg on Y-Axis
22
+ /// @param {Number} $deg[] Degree of rotation
23
+ @mixin rotateY($deg) {
24
+ transform:rotateY($deg + deg);
25
+ }
26
+
27
+ /// RotateZ Mixin: Rotate an element to a certain deg on Z-Axis
28
+ /// @param {Number} $deg[] Degree of rotation
29
+ @mixin rotateZ($deg) {
30
+ transform:rotateZ($deg + deg);
31
+ }
@@ -0,0 +1,54 @@
1
+ // Foundation for Sites by ZURB
2
+ // foundation.zurb.com
3
+ // Licensed under MIT Open Source
4
+
5
+ ////
6
+ /// @group prototype-rounded
7
+ ////
8
+
9
+ /// Responsive breakpoints for rounded utility.
10
+ /// @type Boolean
11
+ $prototype-rounded-breakpoints: $global-prototype-breakpoints !default;
12
+
13
+ /// Default value for `prototype-border-radius`
14
+ /// @type Number
15
+ $prototype-border-radius: rem-calc(3) !default;
16
+
17
+ /// Rounded utility (all corners): Adds radius corners (all corners) to an element by default.
18
+ /// @param {Number} $radius [$prototype-border-radius] Border radius (all corners)
19
+ @mixin border-radius(
20
+ $radius: $prototype-border-radius
21
+ ) {
22
+ border-radius: $radius;
23
+ }
24
+
25
+ /// Rounded square utility or rectangle utility (all corners): Rounds all corners to an element by default to make a pill shape.
26
+ @mixin border-rounded {
27
+ border-radius: 5000px !important;
28
+ }
29
+
30
+ @mixin foundation-prototype-rounded {
31
+ .rounded {
32
+ @include border-rounded;
33
+ }
34
+
35
+ .radius {
36
+ @include border-radius;
37
+ }
38
+
39
+ @if ($prototype-rounded-breakpoints) {
40
+ // Loop through Responsive Breakpoints
41
+ @each $size in $breakpoint-classes {
42
+ @include breakpoint($size) {
43
+ @if $size != $-zf-zero-breakpoint {
44
+ .#{$size}-rounded {
45
+ @include border-rounded;
46
+ }
47
+ .#{$size}-radius {
48
+ @include rounded-radius;
49
+ }
50
+ }
51
+ }
52
+ }
53
+ }
54
+ }
@@ -0,0 +1,96 @@
1
+ // Foundation for Sites by ZURB
2
+ // foundation.zurb.com
3
+ // Licensed under MIT Open Source
4
+
5
+ ////
6
+ /// @group prototype-separator
7
+ ////
8
+
9
+ /// Responsive breakpoints for separator.
10
+ /// @type Boolean
11
+ $prototype-separator-breakpoints: $global-prototype-breakpoints !default;
12
+
13
+ /// Default alignment of a separator.
14
+ /// @type String
15
+ $prototype-separator-align: center !default;
16
+
17
+ /// Height of a separator.
18
+ /// @type Number
19
+ $prototype-separator-height: rem-calc(2) !default;
20
+
21
+ /// Width of a separator.
22
+ /// @type Number
23
+ $prototype-separator-width: 3rem !default;
24
+
25
+ /// Default color of a separator.
26
+ /// @type Color
27
+ $prototype-separator-background: $primary-color !default;
28
+
29
+ /// Top Margin of a separator.
30
+ /// @type Number
31
+ $prototype-separator-margin-top: $global-margin !default;
32
+
33
+ /// Title separator Utility, mostly used to style the main heading of a section
34
+ /// @param {String} $align [$prototype-separator-align] - separator Alignment
35
+ /// @param {Number} $height [$prototype-separator-height] - Width
36
+ /// @param {Number} $width [$prototype-separator-width] - Height
37
+ /// @param {Color} $background [$prototype-separator-background] - Background
38
+ /// @param {Number} $top [$prototype-separator-margin-top] - Margin Top
39
+ @mixin separator (
40
+ $align: $prototype-separator-align,
41
+ $height: $prototype-separator-height,
42
+ $width: $prototype-separator-width,
43
+ $background: $prototype-separator-background,
44
+ $top: $prototype-separator-margin-top
45
+ ) {
46
+ text-align: $align !important;
47
+ @include clearfix;
48
+
49
+ &::after {
50
+ @include position(relative);
51
+ width: $width;
52
+ border-bottom: $height solid $background;
53
+ margin: $top auto 0;
54
+
55
+ @if $align == left {
56
+ margin-left: 0 !important;
57
+ }
58
+
59
+ @if $align == right {
60
+ margin-right: 0 !important;
61
+ }
62
+ }
63
+ }
64
+
65
+ @mixin foundation-prototype-separator {
66
+ .separator-center {
67
+ @include separator(center);
68
+ }
69
+
70
+ .separator-left {
71
+ @include separator(left);
72
+ }
73
+
74
+ .separator-right {
75
+ @include separator(right);
76
+ }
77
+
78
+ @if ($prototype-separator-breakpoints) {
79
+ // Loop through Responsive Breakpoints
80
+ @each $size in $breakpoint-classes {
81
+ @include breakpoint($size) {
82
+ @if $size != $-zf-zero-breakpoint {
83
+ .#{$size}-separator-center {
84
+ @include separator(center);
85
+ }
86
+ .#{$size}-separator-left {
87
+ @include separator(left);
88
+ }
89
+ .#{$size}-separator-right {
90
+ @include separator(right);
91
+ }
92
+ }
93
+ }
94
+ }
95
+ }
96
+ }
@@ -0,0 +1,43 @@
1
+ // Foundation for Sites by ZURB
2
+ // foundation.zurb.com
3
+ // Licensed under MIT Open Source
4
+
5
+ ////
6
+ /// @group prototype-shadow
7
+ ////
8
+
9
+ /// Responsive breakpoints for shadow utility.
10
+ /// @type Boolean
11
+ $prototype-shadow-breakpoints: $global-prototype-breakpoints !default;
12
+
13
+ /// Default value for `prototype-box-shadow`
14
+ /// @type Number
15
+ $prototype-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),
16
+ 0 2px 10px 0 rgba(0,0,0,.12) !default;
17
+
18
+ /// Shadow Utility: Adds a light box shadow to an element by default.
19
+ /// @param {Number} $shadow [$prototype-box-shadow] Box Shadow of a component
20
+ @mixin shadow(
21
+ $shadow: $prototype-box-shadow
22
+ ) {
23
+ box-shadow: $shadow;
24
+ }
25
+
26
+ @mixin foundation-prototype-shadow {
27
+ .shadow {
28
+ @include shadow;
29
+ }
30
+
31
+ @if ($prototype-shadow-breakpoints) {
32
+ // Loop through Responsive Breakpoints
33
+ @each $size in $breakpoint-classes {
34
+ @include breakpoint($size) {
35
+ @if $size != $-zf-zero-breakpoint {
36
+ .#{$size}-shadow {
37
+ @include shadow;
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
43
+ }