Merge branch 'master' into add/color-annotations-balasana
This commit is contained in:
commit
e84fdee182
116 changed files with 661 additions and 217 deletions
|
@ -206,38 +206,6 @@ add_color_rule( 'txt', '#394d55', array(
|
|||
body,
|
||||
body .widget_eu_cookie_law_widget #eu-cookie-law,
|
||||
body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept,
|
||||
input[type="color"],
|
||||
input[type="color"]:focus,
|
||||
input[type="date"],
|
||||
input[type="date"]:focus,
|
||||
input[type="datetime"],
|
||||
input[type="datetime"]:focus,
|
||||
input[type="datetime-local"],
|
||||
input[type="datetime-local"]:focus,
|
||||
input[type="email"],
|
||||
input[type="email"]:focus,
|
||||
input[type="month"],
|
||||
input[type="month"]:focus,
|
||||
input[type="number"],
|
||||
input[type="number"]:focus,
|
||||
input[type="password"],
|
||||
input[type="password"]:focus,
|
||||
input[type="range"],
|
||||
input[type="range"]:focus,
|
||||
input[type="search"],
|
||||
input[type="search"]:focus,
|
||||
input[type="tel"],
|
||||
input[type="tel"]:focus,
|
||||
input[type="text"],
|
||||
input[type="text"]:focus,
|
||||
input[type="time"],
|
||||
input[type="time"]:focus,
|
||||
input[type="url"],
|
||||
input[type="url"]:focus,
|
||||
input[type="week"],
|
||||
input[type="week"]:focus,
|
||||
textarea,
|
||||
textarea:focus,
|
||||
.site-header .main-navigation > div > ul > li .sub-menu a,
|
||||
.a8c-posts-list__item .a8c-posts-list-item__meta,
|
||||
.entry-footer,
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -32,6 +32,12 @@
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1301,6 +1301,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #394d55;
|
||||
color: black;
|
||||
border: 1px solid #3E7D98;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #394d55;
|
||||
color: black;
|
||||
border-color: #2f5f74;
|
||||
}
|
||||
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #394d55;
|
||||
color: black;
|
||||
border: 1px solid #3E7D98;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #394d55;
|
||||
color: black;
|
||||
border-color: #2f5f74;
|
||||
}
|
||||
|
||||
|
|
|
@ -146,7 +146,7 @@ $config-elements: (
|
|||
"form": (
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -32,6 +32,12 @@
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1301,6 +1301,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #303030;
|
||||
color: black;
|
||||
border: 1px solid #D0D0D0;
|
||||
border-radius: 4px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #303030;
|
||||
color: black;
|
||||
border-color: #145f3e;
|
||||
}
|
||||
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #303030;
|
||||
color: black;
|
||||
border: 1px solid #D0D0D0;
|
||||
border-radius: 4px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #303030;
|
||||
color: black;
|
||||
border-color: #145f3e;
|
||||
}
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "dark"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -32,6 +32,11 @@
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
.wp-block-cover,
|
||||
.wp-block-cover-image,
|
||||
|
|
|
@ -1301,6 +1301,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.wp-block-cover .wp-block-separator,
|
||||
.wp-block-cover-image .wp-block-separator,
|
||||
.has-background .wp-block-separator {
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #3C2323;
|
||||
color: black;
|
||||
border: 1px solid #AAAAAA;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #3C2323;
|
||||
color: black;
|
||||
border-color: #133a24;
|
||||
}
|
||||
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #3C2323;
|
||||
color: black;
|
||||
border: 1px solid #AAAAAA;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #3C2323;
|
||||
color: black;
|
||||
border-color: #133a24;
|
||||
}
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -33,6 +33,12 @@
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1301,6 +1301,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #252E36;
|
||||
color: black;
|
||||
border: 1px solid #B9B6B2;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #252E36;
|
||||
color: black;
|
||||
border-color: #252E36;
|
||||
}
|
||||
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #252E36;
|
||||
color: black;
|
||||
border: 1px solid #B9B6B2;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #252E36;
|
||||
color: black;
|
||||
border-color: #252E36;
|
||||
}
|
||||
|
||||
|
|
|
@ -192,39 +192,7 @@ add_color_rule( 'txt', '#444444', array(
|
|||
.wp-block-pullquote,
|
||||
body,
|
||||
body .widget_eu_cookie_law_widget #eu-cookie-law,
|
||||
body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept,
|
||||
input[type="color"],
|
||||
input[type="color"]:focus,
|
||||
input[type="date"],
|
||||
input[type="date"]:focus,
|
||||
input[type="datetime"],
|
||||
input[type="datetime"]:focus,
|
||||
input[type="datetime-local"],
|
||||
input[type="datetime-local"]:focus,
|
||||
input[type="email"],
|
||||
input[type="email"]:focus,
|
||||
input[type="month"],
|
||||
input[type="month"]:focus,
|
||||
input[type="number"],
|
||||
input[type="number"]:focus,
|
||||
input[type="password"],
|
||||
input[type="password"]:focus,
|
||||
input[type="range"],
|
||||
input[type="range"]:focus,
|
||||
input[type="search"],
|
||||
input[type="search"]:focus,
|
||||
input[type="tel"],
|
||||
input[type="tel"]:focus,
|
||||
input[type="text"],
|
||||
input[type="text"]:focus,
|
||||
input[type="time"],
|
||||
input[type="time"]:focus,
|
||||
input[type="url"],
|
||||
input[type="url"]:focus,
|
||||
input[type="week"],
|
||||
input[type="week"]:focus,
|
||||
textarea,
|
||||
textarea:focus', 'color' ),
|
||||
body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept', 'color' ),
|
||||
|
||||
// Background-color
|
||||
array( '.wp-block-cover.has-background-dim,
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -32,6 +32,12 @@
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1298,6 +1298,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1057,7 +1057,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #444444;
|
||||
color: #000000;
|
||||
border: 1px solid #DDDDDD;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1079,7 +1079,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #444444;
|
||||
color: #000000;
|
||||
border-color: #FF7A5C;
|
||||
}
|
||||
|
||||
|
|
|
@ -1057,7 +1057,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #444444;
|
||||
color: #000000;
|
||||
border: 1px solid #DDDDDD;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1079,7 +1079,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #444444;
|
||||
color: #000000;
|
||||
border-color: #FF7A5C;
|
||||
}
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -32,6 +32,12 @@
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1301,6 +1301,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #1e1e1e;
|
||||
color: black;
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #1e1e1e;
|
||||
color: black;
|
||||
border-color: #005177;
|
||||
}
|
||||
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #1e1e1e;
|
||||
color: black;
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #1e1e1e;
|
||||
color: black;
|
||||
border-color: #005177;
|
||||
}
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -32,6 +32,12 @@
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1301,6 +1301,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #111111;
|
||||
color: black;
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #111111;
|
||||
color: black;
|
||||
border-color: #195f2b;
|
||||
}
|
||||
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #111111;
|
||||
color: black;
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #111111;
|
||||
color: black;
|
||||
border-color: #195f2b;
|
||||
}
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -32,6 +32,12 @@
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1301,6 +1301,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #303030;
|
||||
color: black;
|
||||
border: 1px solid #C5C5C5;
|
||||
border-radius: 5px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #303030;
|
||||
color: black;
|
||||
border-color: #303030;
|
||||
}
|
||||
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #303030;
|
||||
color: black;
|
||||
border: 1px solid #C5C5C5;
|
||||
border-radius: 5px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #303030;
|
||||
color: black;
|
||||
border-color: #303030;
|
||||
}
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -33,6 +33,12 @@
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1301,6 +1301,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #444444;
|
||||
color: black;
|
||||
border: 1px solid #DDDDDD;
|
||||
border-radius: 3px;
|
||||
padding: calc( 0.33 * 16px);
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #444444;
|
||||
color: black;
|
||||
border-color: #1285ce;
|
||||
}
|
||||
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #444444;
|
||||
color: black;
|
||||
border: 1px solid #DDDDDD;
|
||||
border-radius: 3px;
|
||||
padding: calc( 0.33 * 16px);
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #444444;
|
||||
color: black;
|
||||
border-color: #1285ce;
|
||||
}
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -32,6 +32,12 @@
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1300,6 +1300,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #010101;
|
||||
color: black;
|
||||
border: 1px solid #e6e6e6;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #010101;
|
||||
color: black;
|
||||
border-color: #666666;
|
||||
}
|
||||
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #010101;
|
||||
color: black;
|
||||
border: 1px solid #e6e6e6;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #010101;
|
||||
color: black;
|
||||
border-color: #666666;
|
||||
}
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -25,6 +25,12 @@
|
|||
*/
|
||||
@import "../../varia/sass/elements/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
/**
|
||||
* Blocks
|
||||
* - These styles replace key Gutenberg Block styles for fonts, colors, and
|
||||
|
|
|
@ -282,6 +282,21 @@ object {
|
|||
max-width: 100%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
/**
|
||||
* Blocks
|
||||
* - These styles replace key Gutenberg Block styles for fonts, colors, and
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #181818;
|
||||
color: black;
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #181818;
|
||||
color: black;
|
||||
border-color: #685636;
|
||||
}
|
||||
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #181818;
|
||||
color: black;
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #181818;
|
||||
color: black;
|
||||
border-color: #685636;
|
||||
}
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -32,6 +32,12 @@
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1301,6 +1301,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #303030;
|
||||
color: black;
|
||||
border: 1px solid #C5C5C5;
|
||||
border-radius: 5px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #303030;
|
||||
color: black;
|
||||
border-color: #303030;
|
||||
}
|
||||
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #303030;
|
||||
color: black;
|
||||
border: 1px solid #C5C5C5;
|
||||
border-radius: 5px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #303030;
|
||||
color: black;
|
||||
border-color: #303030;
|
||||
}
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -44,6 +44,12 @@ html {
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
.wp-block-a8c-blog-posts {
|
||||
.entry-title {
|
||||
@include font-family( map-deep-get($config-global, "font", "family", "primary") );
|
||||
|
|
|
@ -1313,6 +1313,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.wp-block-a8c-blog-posts .entry-title {
|
||||
font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
|
||||
font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #222222;
|
||||
color: black;
|
||||
border: 1px solid #DDDDDD;
|
||||
border-radius: 3px;
|
||||
padding: calc( 0.33 * 16px);
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #222222;
|
||||
color: black;
|
||||
border-color: #222222;
|
||||
}
|
||||
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #222222;
|
||||
color: black;
|
||||
border: 1px solid #DDDDDD;
|
||||
border-radius: 3px;
|
||||
padding: calc( 0.33 * 16px);
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #222222;
|
||||
color: black;
|
||||
border-color: #222222;
|
||||
}
|
||||
|
||||
|
|
|
@ -181,5 +181,15 @@ function rivington_editor_styles() {
|
|||
|
||||
// Enqueue Google fonts in the editor, if necessary
|
||||
wp_enqueue_style( 'rivington-editor-fonts', rivington_fonts_url(), array(), null );
|
||||
|
||||
// Hide duplicate palette colors
|
||||
$colors_array = get_theme_mod('colors_manager', array( 'colors' => true )); // color annotations array()
|
||||
if ( ! empty( $colors_array ) && $colors_array['colors']['txt'] != '#F2F2F2' ) { // $config-global--color-foreground-light-default;
|
||||
$inline_palette_css = '.block-editor-color-gradient-control .components-circular-option-picker__option-wrapper:nth-child(5),
|
||||
.block-editor-color-gradient-control .components-circular-option-picker__option-wrapper:nth-child(6) {
|
||||
display: none;
|
||||
}';
|
||||
wp_add_inline_style( 'wp-edit-blocks', $inline_palette_css );
|
||||
}
|
||||
}
|
||||
add_action( 'enqueue_block_editor_assets', 'rivington_editor_styles' );
|
||||
|
|
|
@ -73,40 +73,7 @@ add_color_rule( 'bg', '#060f29', array(
|
|||
button[data-load-more-btn],
|
||||
input.has-focus[type="submit"],
|
||||
input:focus[type="submit"],
|
||||
input:hover[type="submit"],
|
||||
input[type="color"],
|
||||
input[type="color"]:focus,
|
||||
input[type="date"],
|
||||
input[type="date"]:focus,
|
||||
input[type="datetime"],
|
||||
input[type="datetime"]:focus,
|
||||
input[type="datetime-local"],
|
||||
input[type="datetime-local"]:focus,
|
||||
input[type="email"],
|
||||
input[type="email"]:focus,
|
||||
input[type="month"],
|
||||
input[type="month"]:focus,
|
||||
input[type="number"],
|
||||
input[type="number"]:focus,
|
||||
input[type="password"],
|
||||
input[type="password"]:focus,
|
||||
input[type="range"],
|
||||
input[type="range"]:focus,
|
||||
input[type="search"],
|
||||
input[type="search"]:focus,
|
||||
input[type="submit"],
|
||||
input[type="tel"],
|
||||
input[type="tel"]:focus,
|
||||
input[type="text"],
|
||||
input[type="text"]:focus,
|
||||
input[type="time"],
|
||||
input[type="time"]:focus,
|
||||
input[type="url"],
|
||||
input[type="url"]:focus,
|
||||
input[type="week"],
|
||||
input[type="week"]:focus,
|
||||
textarea,
|
||||
textarea:focus', 'color' ),
|
||||
input:hover[type="submit"]', 'color' ),
|
||||
|
||||
/**
|
||||
* Utility Classes
|
||||
|
@ -426,6 +393,25 @@ add_color_rule( 'fg1', '#EE4266', array(
|
|||
* Custom CSS
|
||||
*/
|
||||
function rivington_custom_colors_extra_css() { ?>
|
||||
input[type="text"],
|
||||
input[type="email"],
|
||||
input[type="url"],
|
||||
input[type="password"],
|
||||
input[type="search"],
|
||||
input[type="number"],
|
||||
input[type="tel"],
|
||||
input[type="range"],
|
||||
input[type="date"],
|
||||
input[type="month"],
|
||||
input[type="week"],
|
||||
input[type="time"],
|
||||
input[type="datetime"],
|
||||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 560px) {
|
||||
.main-navigation > div > ul > li > .sub-menu > li:first-child > a {
|
||||
border-top: 1px solid;
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "background", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -32,6 +32,12 @@
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1301,6 +1301,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #060f29;
|
||||
color: black;
|
||||
border: 0 solid #353a46;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #060f29;
|
||||
color: black;
|
||||
border-color: #b59439;
|
||||
}
|
||||
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #060f29;
|
||||
color: black;
|
||||
border: 0 solid #353a46;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #060f29;
|
||||
color: black;
|
||||
border-color: #b59439;
|
||||
}
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -32,6 +32,12 @@
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1301,6 +1301,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extras
|
||||
*/
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #444444;
|
||||
color: black;
|
||||
border: 2px solid #E0E0E0;
|
||||
border-radius: 0;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #444444;
|
||||
color: black;
|
||||
border-color: #444444;
|
||||
}
|
||||
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #444444;
|
||||
color: black;
|
||||
border: 2px solid #E0E0E0;
|
||||
border-radius: 0;
|
||||
padding: 16px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #444444;
|
||||
color: black;
|
||||
border-color: #444444;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
<!-- wp:spacer {"height":30} -->
|
||||
<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:paragraph {"align":"center","fontSize":"small"} -->
|
||||
<p class="has-text-align-center has-small-font-size">Proudly powered by <a href="https://wordpress.org">WordPress</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:spacer {"height":30} -->
|
||||
<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
|
@ -1,3 +1,7 @@
|
|||
<!-- wp:spacer {"height":60} -->
|
||||
<div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:image {"align":"center","width":128,"height":128,"sizeSlug":"large","className":""} -->
|
||||
<div class="wp-block-image"><figure class="aligncenter size-large is-resized"><img src="https://cldup.com/B9dfntUFJE.png" alt="" width="128" height="128"/></figure></div>
|
||||
<!-- /wp:image -->
|
||||
|
@ -10,4 +14,8 @@
|
|||
|
||||
<!-- wp:navigation {"itemsJustification":"center"} -->
|
||||
<!-- wp:navigation-link {"label":"Home","url":"#"} /-->
|
||||
<!-- /wp:navigation -->
|
||||
<!-- /wp:navigation -->
|
||||
|
||||
<!-- wp:spacer {"height":60} -->
|
||||
<div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
|
@ -1,5 +1,5 @@
|
|||
<!-- wp:group {"align":"full","className":"site-header","tagName":"header"} -->
|
||||
<div class="wp-block-group alignfull site-header"><div class="wp-block-group__inner-container"><!-- wp:template-part {"slug":"header","theme":"seedlet-blocks","align":"full"} /--></div></div>
|
||||
<!-- wp:group {"align":"full","tagName":"header"} -->
|
||||
<div class="wp-block-group alignfull"><div class="wp-block-group__inner-container"><!-- wp:template-part {"slug":"header","theme":"seedlet-blocks","align":"full"} /--></div></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"align":"full","className":"site-content","tagName":"main"} -->
|
||||
|
@ -10,6 +10,6 @@
|
|||
<!-- /wp:query-loop --></div></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"align":"full","className":"site-footer","tagName":"footer"} -->
|
||||
<div class="wp-block-group alignfull site-footer"><div class="wp-block-group__inner-container"><!-- wp:template-part {"slug":"footer","theme":"seedlet-blocks","align":"full"} /--></div></div>
|
||||
<!-- wp:group {"align":"full","tagName":"footer"} -->
|
||||
<div class="wp-block-group alignfull"><div class="wp-block-group__inner-container"><!-- wp:template-part {"slug":"footer","theme":"seedlet-blocks","align":"full"} /--></div></div>
|
||||
<!-- /wp:group -->
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<!-- wp:group {"align":"full","className":"site-header","tagName":"header"} -->
|
||||
<div class="wp-block-group alignfull site-header"><div class="wp-block-group__inner-container"><!-- wp:template-part {"slug":"header","theme":"seedlet-blocks","align":"full"} /--></div></div>
|
||||
<!-- wp:group {"align":"full","tagName":"header"} -->
|
||||
<div class="wp-block-group alignfull"><div class="wp-block-group__inner-container"><!-- wp:template-part {"slug":"header","theme":"seedlet-blocks","align":"full"} /--></div></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"align":"full","className":"site-content","tagName":"main"} -->
|
||||
|
@ -8,6 +8,6 @@
|
|||
<!-- wp:post-content {"align":"full"} /--></div></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"align":"full","className":"site-footer","tagName":"footer"} -->
|
||||
<div class="wp-block-group alignfull site-footer"><div class="wp-block-group__inner-container"><!-- wp:template-part {"slug":"footer","theme":"seedlet-blocks","align":"full"} /--></div></div>
|
||||
<!-- wp:group {"align":"full","tagName":"footer"} -->
|
||||
<div class="wp-block-group alignfull"><div class="wp-block-group__inner-container"><!-- wp:template-part {"slug":"footer","theme":"seedlet-blocks","align":"full"} /--></div></div>
|
||||
<!-- /wp:group -->
|
||||
|
|
|
@ -15,4 +15,9 @@ body {
|
|||
--global--color-primary: var(--wp--preset--color--primary);
|
||||
--global--color-secondary: var(--wp--preset--color--secondary);
|
||||
--global--color-tertiary: var(--wp--preset--color--tertiary);
|
||||
}
|
||||
}
|
||||
|
||||
.site-content .wp-block[data-align="full"] > [data-block], .site-content .wp-block.alignfull > [data-block] {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
|
|
@ -1886,9 +1886,17 @@ a:focus {
|
|||
}
|
||||
|
||||
a:active {
|
||||
color: undefined;
|
||||
}
|
||||
|
||||
p.has-background.has-link-color:not(.has-background-background-color) a {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.has-link-color a {
|
||||
border-bottom: 1px solid #000000;
|
||||
}
|
||||
|
||||
*:focus {
|
||||
outline-width: 1px;
|
||||
outline-style: dotted;
|
||||
|
|
|
@ -109,7 +109,7 @@ body {
|
|||
|
||||
a {
|
||||
border-bottom: 1px solid var(--global--color-secondary);
|
||||
color: var(--global--color-primary);
|
||||
color: var(--wp--style--color--link, var(--global--color-primary));
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
@ -118,7 +118,15 @@ a:hover, a:focus {
|
|||
}
|
||||
|
||||
a:active {
|
||||
color: var(--global--color-primary);
|
||||
color: var(--wp--style--color--link, var(--global--color-primary));
|
||||
}
|
||||
|
||||
p.has-background.has-link-color:not(.has-background-background-color) a {
|
||||
color: var(--wp--style--color--link, var(--global--color-primary));
|
||||
}
|
||||
|
||||
.has-link-color a {
|
||||
border-bottom: 1px solid var(--wp--style--color--link);
|
||||
}
|
||||
|
||||
button,
|
||||
|
@ -1163,6 +1171,11 @@ pre.wp-block-verse {
|
|||
max-width: none;
|
||||
}
|
||||
|
||||
.block-editor-block-list__layout:not(.edit-site-block-editor__block-list) .wp-block[data-align="full"] > [data-block], .block-editor-block-list__layout:not(.edit-site-block-editor__block-list) .wp-block.alignfull > [data-block] {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.alignleft {
|
||||
margin: 0;
|
||||
margin-right: var(--global--spacing-horizontal);
|
||||
|
|
|
@ -19,7 +19,7 @@ body {
|
|||
// Links styles
|
||||
a {
|
||||
border-bottom: 1px solid var(--global--color-secondary);
|
||||
color: var(--global--color-primary);
|
||||
color: var( --wp--style--color--link, var(--global--color-primary) );
|
||||
text-decoration: none;
|
||||
|
||||
&:hover,
|
||||
|
@ -28,7 +28,19 @@ a {
|
|||
}
|
||||
|
||||
&:active {
|
||||
color: var(--global--color-primary);
|
||||
color: var( --wp--style--color--link, var(--global--color-primary) );
|
||||
}
|
||||
|
||||
// Enforce the custom link color even if a custom background color has been set.
|
||||
// The extra specificity here is required to override the background color styles.
|
||||
p.has-background.has-link-color:not(.has-background-background-color) & {
|
||||
color: var( --wp--style--color--link, var(--global--color-primary) );
|
||||
}
|
||||
|
||||
// If a custom link color has been assigned,
|
||||
// switch the color of the bottom border too.
|
||||
.has-link-color & {
|
||||
border-bottom: 1px solid var(--wp--style--color--link);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -81,7 +81,7 @@ body {
|
|||
// Links styles
|
||||
a {
|
||||
border-bottom: 1px solid var(--global--color-secondary);
|
||||
color: var(--global--color-primary);
|
||||
color: var( --wp--style--color--link, var(--global--color-primary) );
|
||||
text-decoration: none;
|
||||
|
||||
&:hover,
|
||||
|
@ -90,7 +90,19 @@ a {
|
|||
}
|
||||
|
||||
&:active {
|
||||
color: var(--global--color-primary);
|
||||
color: var(--wp--style--color--link);
|
||||
}
|
||||
|
||||
// Enforce the custom link color even if a custom background color has been set.
|
||||
// The extra specificity here is required to override the background color styles.
|
||||
p.has-background.has-link-color:not(.has-background-background-color) & {
|
||||
color: var( --wp--style--color--link, var(--global--color-primary) );
|
||||
}
|
||||
|
||||
// If a custom link color has been assigned,
|
||||
// switch the color of the bottom border too.
|
||||
.has-link-color & {
|
||||
border-bottom: 1px solid var( --wp--style--color--link, var(--global--color-primary) );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -233,6 +233,19 @@
|
|||
}
|
||||
}
|
||||
|
||||
// Selects the post editor and not the site editor
|
||||
.block-editor-block-list__layout:not(.edit-site-block-editor__block-list){
|
||||
.wp-block {
|
||||
&[data-align="full"],
|
||||
&.alignfull {
|
||||
&>[data-block] {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.alignleft {
|
||||
margin: 0;
|
||||
margin-right: var(--global--spacing-horizontal);
|
||||
|
|
|
@ -254,6 +254,9 @@ if ( ! function_exists( 'seedlet_setup' ) ) :
|
|||
|
||||
// Add support for responsive embedded content.
|
||||
add_theme_support( 'responsive-embeds' );
|
||||
|
||||
// Add support for experimental link color control.
|
||||
add_theme_support( 'experimental-link-color' );
|
||||
}
|
||||
endif;
|
||||
add_action( 'after_setup_theme', 'seedlet_setup' );
|
||||
|
|
|
@ -355,7 +355,8 @@ Included in theme screenshot.
|
|||
/**
|
||||
* Extends
|
||||
*/
|
||||
.default-max-width, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment):not(.woocommerce),
|
||||
.default-max-width, hr.wp-block-separator.is-style-wide, .page-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment):not(.woocommerce),
|
||||
.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment):not(.woocommerce),
|
||||
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-thumbnail, .navigation {
|
||||
max-width: var(--responsive--aligndefault-width);
|
||||
margin-right: auto;
|
||||
|
@ -974,7 +975,7 @@ body {
|
|||
|
||||
a {
|
||||
border-bottom: 1px solid var(--global--color-secondary);
|
||||
color: var(--global--color-primary);
|
||||
color: var(--wp--style--color--link, var(--global--color-primary));
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
@ -983,7 +984,15 @@ a:hover, a:focus {
|
|||
}
|
||||
|
||||
a:active {
|
||||
color: var(--global--color-primary);
|
||||
color: var(--wp--style--color--link);
|
||||
}
|
||||
|
||||
p.has-link-color.has-background a {
|
||||
color: var(--wp--style--color--link, var(--global--color-primary));
|
||||
}
|
||||
|
||||
.has-link-color a {
|
||||
border-bottom: 1px solid var(--wp--style--color--link, var(--global--color-primary));
|
||||
}
|
||||
|
||||
*:focus {
|
||||
|
|
|
@ -983,7 +983,7 @@ body {
|
|||
|
||||
a {
|
||||
border-bottom: 1px solid var(--global--color-secondary);
|
||||
color: var(--global--color-primary);
|
||||
color: var(--wp--style--color--link, var(--global--color-primary));
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
@ -992,7 +992,15 @@ a:hover, a:focus {
|
|||
}
|
||||
|
||||
a:active {
|
||||
color: var(--global--color-primary);
|
||||
color: var(--wp--style--color--link);
|
||||
}
|
||||
|
||||
p.has-background.has-link-color:not(.has-background-background-color) a {
|
||||
color: var(--wp--style--color--link, var(--global--color-primary));
|
||||
}
|
||||
|
||||
.has-link-color a {
|
||||
border-bottom: 1px solid var(--wp--style--color--link, var(--global--color-primary));
|
||||
}
|
||||
|
||||
*:focus {
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -32,6 +32,12 @@
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
.wp-block-a8c-blog-posts {
|
||||
.entry-title a {
|
||||
&:active,
|
||||
|
|
|
@ -1301,6 +1301,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.wp-block-a8c-blog-posts .entry-title a:active, .wp-block-a8c-blog-posts .entry-title a:focus, .wp-block-a8c-blog-posts .entry-title a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #444444;
|
||||
color: black;
|
||||
border: 1px solid #EAEAEA;
|
||||
border-radius: 4px;
|
||||
padding: 8px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #444444;
|
||||
color: black;
|
||||
border-color: #085a72;
|
||||
}
|
||||
|
||||
|
|
|
@ -1058,7 +1058,7 @@ input[type="datetime"],
|
|||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
color: #444444;
|
||||
color: black;
|
||||
border: 1px solid #EAEAEA;
|
||||
border-radius: 4px;
|
||||
padding: 8px;
|
||||
|
@ -1080,7 +1080,7 @@ input[type="datetime"]:focus,
|
|||
input[type="datetime-local"]:focus,
|
||||
input[type="color"]:focus,
|
||||
textarea:focus {
|
||||
color: #444444;
|
||||
color: black;
|
||||
border-color: #085a72;
|
||||
}
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ $config-elements: (
|
|||
|
||||
// Colors
|
||||
"color": (
|
||||
"text": map-deep-get($config-global, "color", "foreground", "default"),
|
||||
"text": map-deep-get($config-global, "color", "black"),
|
||||
"border": map-deep-get($config-global, "color", "border", "default"),
|
||||
"border-focus": map-deep-get($config-global, "color", "primary", "hover"),
|
||||
),
|
||||
|
|
|
@ -32,6 +32,12 @@
|
|||
*/
|
||||
@import "../../varia/sass/blocks/editor";
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
@import "../../varia/sass/vendors/editor";
|
||||
|
||||
/**
|
||||
* Extra Editor Styles
|
||||
*
|
||||
|
|
|
@ -1301,6 +1301,21 @@ table.is-style-stripes tbody tr:nth-child(odd),
|
|||
padding-left: 32px !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vendors
|
||||
* - Styles for 3rd party plugins and WP extensions
|
||||
*/
|
||||
/**
|
||||
* Vendors
|
||||
* - 3rd-party compatibility styles
|
||||
*/
|
||||
/**
|
||||
* Set Jetpack form text color
|
||||
*/
|
||||
.jetpack-contact-info-block .is-selected textarea.block-editor-plain-text {
|
||||
color: black;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extra Editor Styles
|
||||
*
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue