-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #588 from adventistchurch/13.12.0
Initial commit for modified WP theme 3.14.4 support
- Loading branch information
Showing
6 changed files
with
142 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/** | ||
* Mods and fixes for page builders | ||
*/ | ||
|
||
// content-width padding for wrappers | ||
.u-padding--container { | ||
padding-left: 1.25rem; | ||
padding-right: 1.25rem; | ||
@include media(">large") { | ||
padding-left: calc((100vw/7)*1) !important; | ||
padding-right: calc((100vw/7)*1) !important; | ||
} | ||
@include media(">xxxlarge"){ | ||
padding-left: 21vw !important; | ||
padding-right: 21vw !important; | ||
} | ||
} | ||
|
||
// move carousel dots to the bottom so they don't interfere with overlayed header | ||
.c-hero { | ||
.slick-dots { | ||
top: auto; | ||
bottom: 0; | ||
} | ||
} | ||
|
||
// fixes for overlay header | ||
.c-header--overlay { | ||
.c-header__logo { | ||
img { | ||
filter: invert(100%); | ||
} | ||
} | ||
.c-header__nav-primary { | ||
display: none; | ||
@include media(">large"){ | ||
display: flex; | ||
} | ||
} | ||
} | ||
|
||
// sabbath column fixes for overlay header | ||
.hide-sabbath { | ||
.c-header--overlay .c-header--inner { | ||
width: 100vw; | ||
} | ||
} | ||
.hide-sabbath--until-small { | ||
.c-header--overlay .c-header--inner { | ||
width: 100vw; | ||
@include media(">small"){ | ||
width: calc((100vw/7) * 6 - 0.01px); | ||
} | ||
} | ||
} | ||
.hide-sabbath--until-medium { | ||
.c-header--overlay .c-header--inner { | ||
width: 100vw; | ||
@include media(">medium"){ | ||
width: calc((100vw/7) * 6 - 0.01px); | ||
} | ||
} | ||
} | ||
.hide-sabbath--until-large { | ||
.c-header--overlay .c-header--inner { | ||
width: 100vw; | ||
@include media(">large"){ | ||
width: calc((100vw/7) * 6 - 0.01px); | ||
} | ||
} | ||
} | ||
|
||
// margin fixes for page headers inside custom template | ||
.template-custom { | ||
.c-page-header__long--inner { | ||
.c-page-header__content { | ||
@include media(">xxxlarge"){ | ||
margin: 0 21vw; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
@import "settings.variables"; | ||
|
||
.editor-styles-wrapper { | ||
/*------------------------------------*\ | ||
$TOOLS | ||
\*------------------------------------*/ | ||
@import "tools.mixins"; | ||
@import "tools.include-media"; | ||
|
||
/*------------------------------------*\ | ||
$BASE | ||
\*------------------------------------*/ | ||
@import "base.forms"; | ||
@import "base.headings"; | ||
@import "base.links"; | ||
@import "base.lists"; | ||
@import "base.tables"; | ||
|
||
/*------------------------------------*\ | ||
$TEXT | ||
\*------------------------------------*/ | ||
@import "objects.text"; | ||
|
||
/*------------------------------------*\ | ||
$COMPONENTS | ||
\*------------------------------------*/ | ||
@import "objects.blocks"; | ||
@import "objects.buttons"; | ||
@import "objects.icons"; | ||
@import "objects.lists"; | ||
@import "objects.forms"; | ||
|
||
/*------------------------------------*\ | ||
$MODIFIERS | ||
\*------------------------------------*/ | ||
@import "modifier.borders"; | ||
@import "modifier.colors"; | ||
@import "modifier.display"; | ||
@import "modifier.spacing"; | ||
|
||
/*------------------------------------*\ | ||
WP Editor | ||
\*------------------------------------*/ | ||
@import "wp.pagebuilders"; | ||
|
||
} |