WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 60566d1

Browse files
committed
Fix customizer setup for 6.3
1 parent e11bc07 commit 60566d1

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

customizer/complete.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"badge",
1111
"breadcrumbs",
1212
"button_group",
13+
"card",
1314
"callout",
1415
"close_button",
1516
"menu",
@@ -29,6 +30,7 @@
2930
"progress_bar",
3031
"responsive_menu",
3132
"responsive_toggle",
33+
"responsive_accordion_tabs",
3234
"reveal",
3335
"slider",
3436
"sticky",

customizer/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ typography:
1919
button:
2020
sass: button
2121

22+
card:
23+
sass: card
24+
2225
forms:
2326
sass: forms
2427

@@ -168,6 +171,9 @@ sticky:
168171
- triggers
169172
- mediaQuery
170173

174+
responsive_accordion_tabs:
175+
js: zf.responsiveAccordionTabs
176+
171177
reveal:
172178
sass: reveal
173179
js: reveal

scss/grid/_classes.scss

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,14 @@
5555
}
5656
}
5757

58-
// Static (unresponsive) row gutters
59-
@each $breakpoint, $value in $grid-column-gutter {
60-
&.#{$gutter}-#{$breakpoint} {
61-
> .#{$column} {
62-
@include grid-col-gutter($value);
58+
@if type-of($grid-column-gutter) == 'map' {
59+
// Static (unresponsive) row gutters
60+
//
61+
@each $breakpoint, $value in $grid-column-gutter {
62+
&.#{$gutter}-#{$breakpoint} {
63+
> .#{$column} {
64+
@include grid-col-gutter($value);
65+
}
6366
}
6467
}
6568
}

0 commit comments

Comments
 (0)