diff --git a/src/assets/js/js.js b/src/assets/js/js.js index 719f5c8..083a744 100644 --- a/src/assets/js/js.js +++ b/src/assets/js/js.js @@ -58,7 +58,7 @@ jQuery( document ).ready(function( $ ) { /** * Change the class of guttenberg button */ - $( '.wp-block-button a' ).toggleClass().addClass( 'btn btn-jelly-bean' ); + $( '.wp-block-button a' ).addClass( 'btn btn-jelly-bean' ); $( '.tainacan-list-post .table .tainacan-list-collection td' ).click( function(){ window.location = $( '.tainacan-list-post .table .tainacan-list-collection' ).data( "href" ); diff --git a/src/assets/scss/_gutenberg-support.scss b/src/assets/scss/_gutenberg-support.scss index d6dc18b..123e713 100644 --- a/src/assets/scss/_gutenberg-support.scss +++ b/src/assets/scss/_gutenberg-support.scss @@ -1,6 +1,4 @@ // Register palette classes for colors -.has-default-color { color: #298596 !important; } -.has-default-background-color { background-color: #298596 !important; } .has-carmine-color { color: #8c442c !important; } .has-carmine-background-color { background-color: #8c442c !important; } .has-cherry-color { color: #A12B42 !important; } @@ -29,8 +27,7 @@ // 1400px is the maximum the inner cointainer should get, so we // use 1526px - 1 column - 1 column; @media only screen and (min-width: 1526px) { - margin-left: calc(-1*(87.5vw - 1400px)/2) !important; - margin-right: calc(-1*(87.5vw - 1400px)/2) !important; + width: 116.66667vw; } } @@ -70,6 +67,12 @@ padding: 0 !important; } +/* Columns */ +.wp-block-columns.alignfull { + padding-left: 8.333333%; + padding-right: 8.333333%; +} + /* Buttons */ .wp-block-button { margin-bottom: 1rem; diff --git a/src/assets/scss/_post.scss b/src/assets/scss/_post.scss index 69366e3..b0d3f31 100644 --- a/src/assets/scss/_post.scss +++ b/src/assets/scss/_post.scss @@ -258,15 +258,19 @@ } } .wp-block-separator { - border-color: #cbcbcb; + &:not(.has-background-color) { + border-color: #cbcbcb; + } width: 50%; max-width: 300px; - &.is-style-wide{ + &.is-style-wide { width: 100%; } - &.is-style-dots{ - &::before { + &.is-style-dots { + &:not(.has-background-color)::before { color: #cbcbcb; + } + &::before { font-weight: 600; } } @@ -475,27 +479,35 @@ } } text-align: center; - figcaption{ - color: #000; + figcaption { + color: inherit; font-size: 0.875rem; font-weight: 400; } } - .wp-block-pullquote{ + .wp-block-pullquote { margin: 3rem 0; padding: 0; - border: none; + + &:not(.is-style-solid-color) { + border-color:#298596; + border-top-width: 2px; + border-bottom-width: 2px; + border-top-style: solid; + border-bottom-style: solid; + } blockquote { - border-top: 2px solid #cbcbcb; - border-bottom: 2px solid #cbcbcb; padding: 2rem 8.3333333%; + margin: 0; p { font-size: 1.375rem; - color: #298596; font-weight: 500; } + :not(.has-text-color) p { + color: #298596; + } cite { color: #555758; font-size: 1rem; diff --git a/src/assets/scss/editor-style.scss b/src/assets/scss/editor-style.scss index dc7de23..8ae4ba5 100644 --- a/src/assets/scss/editor-style.scss +++ b/src/assets/scss/editor-style.scss @@ -2,15 +2,38 @@ background: white; padding: 3rem 0px 0px 0px !important; } +.block-editor-block-preview__content { + font-family: 'Roboto', sans-serif; +} .edit-post-visual-editor.editor-styles-wrapper, .components-modal__screen-overlay { font-family: 'Roboto', sans-serif !important; + + // Register palette classes for colors + .has-carmine-color { color: #8c442c } + .has-carmine-background-color { background-color: #8c442c } + .has-cherry-color { color: #A12B42 } + .has-cherry-background-color { background-color: #A12B42 } + .has-mustard-color { color: #754E24 } + .has-mustard-background-color { background-color: #754E24 } + .has-mintgreen-color { color: #255F56 } + .has-mintgreen-background-color { background-color: #255F56 } + .has-darkturquoise-color { color: #205E6F } + .has-darkturquoise-background-color { background-color: #205E6F } + .has-turquoise-color { color: #185F6D } + .has-turquoise-background-color { background-color: #185F6D } + .has-blueheavenly-color { color: #1D5C86 } + .has-blueheavenly-background-color { background-color: #1D5C86 } + .has-purple-color { color: #4751a3 } + .has-purple-background-color { background-color: #4751a3 } + .has-violet-color { color: #955ba5 } + .has-violet-background-color { background-color: #955ba5 } // Editor Block list side spacing .editor-block-list__layout, .block-editor-block-list__layout { - padding-left: 8.333333%; - padding-right: 8.333333%; + padding-left: 8.3333333%; + padding-right: 8.3333333%; } .editor-writing-flow__click-redirect { width: auto; @@ -19,39 +42,81 @@ // otherwise they won't match their theme result .editor-inner-blocks, .block-editor-inner-blocks, + .wp-block-group__inner-container, + .wp-block-cover__inner-container>.wp-block, .editor-inner-blocks>.editor-block-list__layout, .block-editor-inner-blocks>.block-editor-block-list__layout { padding-left: 0; padding-right: 0; } - .wp-block-group__inner-container { - padding-left: 0; - padding-right: 0; - } /* Main column width */ .wp-block { - max-width: calc(1400px - 16.666666%); + max-width: calc(1400px - 8.3333336%); + padding-left: 4.1666667%; + padding-right: 4.1666667%; } /* Width of "wide" blocks */ .wp-block[data-align="wide"] { - max-width: 1400px; + padding-left: 0; + padding-right: 0; + + .wp-block-columns { + padding-left: 0; + padding-right: 0; + } } /* Width of "full" blocks */ .block-editor-block-list__layout.is-root-container > .wp-block[data-align="full"], .wp-block[data-align="full"] { - max-width: 120%;// calc(100% + 16.6666667%); - width: 120%; // calc(100% + 16.6666667%); - margin-left: -10%; //calc(-8.3333333%); - margin-right: -10%; //-8.3333333%; + max-width: 122.5%;// calc(100% + 16.6666667%); + width: 125.5%; // calc(100% + 16.6666667%); + margin-left: -12.5%; //calc(-8.3333333%); + margin-right: -12.5%; //-8.3333333%; + padding-left: 0; + padding-right: 0; + } + + /* Tainacan Interface does not force a margin between block elements */ + .block-editor-block-list__block { + margin-top: initial; + margin-bottom: initial; + } + + /* Post title */ + .edit-post-visual-editor__post-title-wrapper, + :not(.edit-post-visual-editor__post-title-wrapper)>.editor-post-title { + margin: 0 auto 5.35rem auto; + padding: 0; + max-width: calc(1400px - 4.1666667%); + width: calc(100% - 8.33333%); + border-bottom: 2px solid #298596; + border-bottom: 2px solid var(--tainacan-color-default, #298596); + + &>.wp-block { + margin: 0 !important; + padding: 0px; + } + } + .wp-block.editor-post-title__block, + .editor-post-title__block .editor-post-title__input{ + font-size: 1.25rem; + font-family: 'Roboto', sans-serif; + textarea { + padding: 3px 6px; + color: #298596; + color: var(--tainacan-color-default, #298596); + } + } + + /* Resize containers also shouldn't add a margin */ + .block-library-spacer__resize-container { + margin-bottom: initial; } /* Columns */ - .wp-block-columns { - padding: 0; - } .wp-block-columns>.editor-inner-blocks >.editor-block-list__layout> [data-type="core/column"]:not(:last-child), .wp-block-columns>.block-editor-inner-blocks >.block-editor-block-list__layout> [data-type="core/column"]:not(:last-child) { margin-right: 2.0833333%; // Half column @@ -70,34 +135,14 @@ .wp-block-columns>.wp-block-column[data-type="core/column"]:not(:first-child) { padding-left: 2.0833333%; // Half column } - .wp-block-columns>.wp-block-column[data-type="core/column"]:not(:first-child) { + .wp-block-columns>.wp-block-column[data-type="core/column"]:not(:last-child) { padding-right: 2.0833333%; // Half column } .wp-block-columns>.wp-block-column[data-type="core/column"]>.wp-block { margin-left: 0; margin-right: 0; - } - - /* Post title */ - .edit-post-visual-editor__post-title-wrapper, - :not(.edit-post-visual-editor__post-title-wrapper)>.editor-post-title { - margin: 0 auto 3em auto; - padding: 0; - max-width: 1400px; - border-bottom: 2px solid #298596; - - &>.wp-block { - margin: 0 14px !important; - } - } - .wp-block.editor-post-title__block, - .editor-post-title__block .editor-post-title__input{ - font-size: 1.25rem; - font-family: 'Roboto', sans-serif; - textarea { - padding: 3px 6px; - color: #298596; - } + padding-right: 0; + padding-left: 0; } /* Heading */ @@ -106,16 +151,23 @@ h1.wp-block[data-type="core/heading"] { font-size: 1.125rem; color: #298596; + color: var(--tainacan-color-default, #298596); + padding-top: .4rem; + margin-bottom: .5rem; } .wp-block-heading h2, .wp-block[data-type="core/heading"] h2, h2.wp-block[data-type="core/heading"] { font-size: 1.125rem; + padding-top: .4rem; + margin-bottom: .5rem; } .wp-block-heading h3, .wp-block[data-type="core/heading"] h3, h3.wp-block[data-type="core/heading"] { font-size: 1rem; + padding-top: .4rem; + margin-bottom: .5rem; } .wp-block-heading h4, .wp-block[data-type="core/heading"] h4, @@ -124,11 +176,15 @@ font-style: italic; font-weight: normal; color: #555758; + padding-top: .4rem; + margin-bottom: .5rem; } .wp-block-heading h5, .wp-block[data-type="core/heading"] h5, h5.wp-block[data-type="core/heading"] { font-size: 0.875rem; + padding-top: .4rem; + margin-bottom: .5rem; } .wp-block-heading h5, .wp-block[data-type="core/heading"] h5, @@ -137,6 +193,13 @@ font-style: italic; font-weight: normal; color: #555758; + padding-top: .4rem; + margin-bottom: .5rem; + } + + p.block-editor-block-list__block.wp-block { + margin-top: 0.5rem; + margin-bottom: 1rem; } /* Links */ @@ -170,11 +233,13 @@ } .components-button.is-button.is-primary { background-color: #298596; + background-color: var(--tainacan-color-default, #298596); } .components-button.is-button.is-default { background: white; border: 1px solid #555758; color: #298596; + color: var(--tainacan-color-default, #298596); } .components-icon-button:hover:not(.is-default), .components-icon-button:focus:not(.is-default), @@ -192,7 +257,10 @@ } .wp-block-button__link { - background-color: #298596; + &:not(.has-background) { + background-color: #298596; + background-color: var(--tainacan-color-default, #298596); + } border-radius: 6px; font-size: 0.875rem; padding: 6px 18px; @@ -200,7 +268,10 @@ .is-style-outline .wp-block-button__link { background-color: white; border: 1px solid #555758; - color: #298596; + &:not(.has-text-color) { + color: #298596; + color: var(--tainacan-color-default, #298596); + } } .is-style-squared .wp-block-button__link { border-radius: 0px; @@ -262,8 +333,7 @@ [data-align="full"] .wp-block-cover__inner-container { max-width: 1400px; margin: 0 auto; - padding: 0 8.3333333333%; - padding: 0 8.3333333333vw; + padding: 0 12.5%; &>.wp-block { max-width: 100%; @@ -271,6 +341,12 @@ } } + /* Figcaption on image block */ + .wp-block-embed figcaption, + .wp-block-image figcaption { + color: inherit; + } + /* Modal container */ .components-modal__content { padding: 32px; @@ -282,7 +358,7 @@ height: 32px; margin: 0 12px 32px 12px; padding: 0; - border-bottom: 1px solid #298596; + border-bottom: 1px solid var(--tainacan-color-default, #298596); .components-modal__header-heading, h1 { @@ -360,7 +436,7 @@ font-family: 'Roboto', sans-serif; } .wp-block-quote:not(.is-style-large):not(.is-large) { - border-left: 2px solid #298596; + border-left: 2px solid var(--tainacan-color-default, #298596); } .wp-block-quote__citation { font-weight: 500; @@ -372,15 +448,27 @@ /* Pullquote */ .wp-block-pullquote { - border-top: 2px solid #cbcbcb; - border-bottom: 2px solid #cbcbcb; - padding: 1rem 0; + &:not(.is-style-solid-color) { + border-top: 2px solid var(--tainacan-color-default, #298596); + border-bottom: 2px solid var(--tainacan-color-default, #298596); + } + padding: 0; - .block-library-pullquote__content.editor-rich-text p { + blockquote { + margin: 0; + padding: 2rem 8.3333333%; + } + + .block-library-pullquote__content.editor-rich-text p, + .rich-text.block-editor-rich-text__editable p { font-size: 1.375rem; - color: #298596; font-weight: 500; } + :not(.has-text-color) .block-library-pullquote__content.editor-rich-text p, + :not(.has-text-color) .rich-text.block-editor-rich-text__editable p { + color: #298596; + color: var(--tainacan-color-default, #298596); + } .wp-block-pullquote__citation { color: #555758; font-size: 1rem; @@ -390,6 +478,28 @@ } } + /* Separator */ + .wp-block-separator { + &:not(.has-background-color) { + border-color: #298596; + border-color: var(--tainacan-color-default, #298596); + } + width: 50%; + max-width: 300px; + &.is-style-wide { + width: 100%; + } + &.is-style-dots { + &:not(.has-background-color)::before { + color: #298596; + color: var(--tainacan-color-default, #298596); + } + &::before { + font-weight: 600; + } + } + } + /* Pre */ .wp-block-preformatted pre { color: #555758; @@ -401,6 +511,7 @@ /* Code */ .wp-block-code textarea { color: #298596; + color: var(--tainacan-color-default, #298596); } /* Tables */ @@ -460,12 +571,14 @@ .wp-block-group.tainacan-group-heading { .wp-block-heading { color: #298596 !important; + color: var(--tainacan-color-default, #298596) !important; } h1:not(.has-text-color), h2:not(.has-text-color), h3:not(.has-text-color), h4:not(.has-text-color) { - color: #298596; + color: #298596 !important; + color: var(--tainacan-color-default, #298596); } h1.wp-block-heading, h1:not(.has-huge-font-size):not(.has-large-font-size):not(.has-medium-font-size):not(.has-normal-font-size):not(.has-small-font-size) { @@ -493,6 +606,7 @@ margin-left: 0; max-width: 200px; border-color: #298596; + border-color: var(--tainacan-color-default, #298596); } hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) { border-width: 2px; diff --git a/src/editor-style.css b/src/editor-style.css index 9cf15be..5a80e44 100644 --- a/src/editor-style.css +++ b/src/editor-style.css @@ -2,70 +2,173 @@ background: white; padding: 3rem 0px 0px 0px !important; } +.block-editor-block-preview__content { + font-family: 'Roboto', sans-serif; } + .edit-post-visual-editor.editor-styles-wrapper, .components-modal__screen-overlay { font-family: 'Roboto', sans-serif !important; /* Main column width */ /* Width of "wide" blocks */ /* Width of "full" blocks */ - /* Columns */ + /* Tainacan Interface does not force a margin between block elements */ /* Post title */ + /* Resize containers also shouldn't add a margin */ + /* Columns */ /* Heading */ /* Links */ /* Buttons */ /* Text input */ /* Labels */ /* Cover block */ + /* Figcaption on image block */ /* Modal container */ /* Modal Header */ /* Checkboxes and Radio Buttons*/ /* Blockquote */ /* Pullquote */ + /* Separator */ /* Pre */ /* Code */ /* Tables */ /* Tainacan Selection Modal */ /* Extra title group class, that can be added for styling special headings */ } + .edit-post-visual-editor.editor-styles-wrapper .has-carmine-color, + .components-modal__screen-overlay .has-carmine-color { + color: #8c442c; } + .edit-post-visual-editor.editor-styles-wrapper .has-carmine-background-color, + .components-modal__screen-overlay .has-carmine-background-color { + background-color: #8c442c; } + .edit-post-visual-editor.editor-styles-wrapper .has-cherry-color, + .components-modal__screen-overlay .has-cherry-color { + color: #A12B42; } + .edit-post-visual-editor.editor-styles-wrapper .has-cherry-background-color, + .components-modal__screen-overlay .has-cherry-background-color { + background-color: #A12B42; } + .edit-post-visual-editor.editor-styles-wrapper .has-mustard-color, + .components-modal__screen-overlay .has-mustard-color { + color: #754E24; } + .edit-post-visual-editor.editor-styles-wrapper .has-mustard-background-color, + .components-modal__screen-overlay .has-mustard-background-color { + background-color: #754E24; } + .edit-post-visual-editor.editor-styles-wrapper .has-mintgreen-color, + .components-modal__screen-overlay .has-mintgreen-color { + color: #255F56; } + .edit-post-visual-editor.editor-styles-wrapper .has-mintgreen-background-color, + .components-modal__screen-overlay .has-mintgreen-background-color { + background-color: #255F56; } + .edit-post-visual-editor.editor-styles-wrapper .has-darkturquoise-color, + .components-modal__screen-overlay .has-darkturquoise-color { + color: #205E6F; } + .edit-post-visual-editor.editor-styles-wrapper .has-darkturquoise-background-color, + .components-modal__screen-overlay .has-darkturquoise-background-color { + background-color: #205E6F; } + .edit-post-visual-editor.editor-styles-wrapper .has-turquoise-color, + .components-modal__screen-overlay .has-turquoise-color { + color: #185F6D; } + .edit-post-visual-editor.editor-styles-wrapper .has-turquoise-background-color, + .components-modal__screen-overlay .has-turquoise-background-color { + background-color: #185F6D; } + .edit-post-visual-editor.editor-styles-wrapper .has-blueheavenly-color, + .components-modal__screen-overlay .has-blueheavenly-color { + color: #1D5C86; } + .edit-post-visual-editor.editor-styles-wrapper .has-blueheavenly-background-color, + .components-modal__screen-overlay .has-blueheavenly-background-color { + background-color: #1D5C86; } + .edit-post-visual-editor.editor-styles-wrapper .has-purple-color, + .components-modal__screen-overlay .has-purple-color { + color: #4751a3; } + .edit-post-visual-editor.editor-styles-wrapper .has-purple-background-color, + .components-modal__screen-overlay .has-purple-background-color { + background-color: #4751a3; } + .edit-post-visual-editor.editor-styles-wrapper .has-violet-color, + .components-modal__screen-overlay .has-violet-color { + color: #955ba5; } + .edit-post-visual-editor.editor-styles-wrapper .has-violet-background-color, + .components-modal__screen-overlay .has-violet-background-color { + background-color: #955ba5; } .edit-post-visual-editor.editor-styles-wrapper .editor-block-list__layout, .edit-post-visual-editor.editor-styles-wrapper .block-editor-block-list__layout, .components-modal__screen-overlay .editor-block-list__layout, .components-modal__screen-overlay .block-editor-block-list__layout { - padding-left: 8.333333%; - padding-right: 8.333333%; } + padding-left: 8.3333333%; + padding-right: 8.3333333%; } .edit-post-visual-editor.editor-styles-wrapper .editor-writing-flow__click-redirect, .components-modal__screen-overlay .editor-writing-flow__click-redirect { width: auto; } .edit-post-visual-editor.editor-styles-wrapper .editor-inner-blocks, .edit-post-visual-editor.editor-styles-wrapper .block-editor-inner-blocks, + .edit-post-visual-editor.editor-styles-wrapper .wp-block-group__inner-container, + .edit-post-visual-editor.editor-styles-wrapper .wp-block-cover__inner-container > .wp-block, .edit-post-visual-editor.editor-styles-wrapper .editor-inner-blocks > .editor-block-list__layout, .edit-post-visual-editor.editor-styles-wrapper .block-editor-inner-blocks > .block-editor-block-list__layout, .components-modal__screen-overlay .editor-inner-blocks, .components-modal__screen-overlay .block-editor-inner-blocks, + .components-modal__screen-overlay .wp-block-group__inner-container, + .components-modal__screen-overlay .wp-block-cover__inner-container > .wp-block, .components-modal__screen-overlay .editor-inner-blocks > .editor-block-list__layout, .components-modal__screen-overlay .block-editor-inner-blocks > .block-editor-block-list__layout { padding-left: 0; padding-right: 0; } - .edit-post-visual-editor.editor-styles-wrapper .wp-block-group__inner-container, - .components-modal__screen-overlay .wp-block-group__inner-container { - padding-left: 0; - padding-right: 0; } .edit-post-visual-editor.editor-styles-wrapper .wp-block, .components-modal__screen-overlay .wp-block { - max-width: calc(1400px - 16.666666%); } + max-width: calc(1400px - 8.3333336%); + padding-left: 4.1666667%; + padding-right: 4.1666667%; } .edit-post-visual-editor.editor-styles-wrapper .wp-block[data-align="wide"], .components-modal__screen-overlay .wp-block[data-align="wide"] { - max-width: 1400px; } + padding-left: 0; + padding-right: 0; } + .edit-post-visual-editor.editor-styles-wrapper .wp-block[data-align="wide"] .wp-block-columns, + .components-modal__screen-overlay .wp-block[data-align="wide"] .wp-block-columns { + padding-left: 0; + padding-right: 0; } .edit-post-visual-editor.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .wp-block[data-align="full"], .edit-post-visual-editor.editor-styles-wrapper .wp-block[data-align="full"], .components-modal__screen-overlay .block-editor-block-list__layout.is-root-container > .wp-block[data-align="full"], .components-modal__screen-overlay .wp-block[data-align="full"] { - max-width: 120%; - width: 120%; - margin-left: -10%; - margin-right: -10%; } - .edit-post-visual-editor.editor-styles-wrapper .wp-block-columns, - .components-modal__screen-overlay .wp-block-columns { - padding: 0; } + max-width: 122.5%; + width: 125.5%; + margin-left: -12.5%; + margin-right: -12.5%; + padding-left: 0; + padding-right: 0; } + .edit-post-visual-editor.editor-styles-wrapper .block-editor-block-list__block, + .components-modal__screen-overlay .block-editor-block-list__block { + margin-top: initial; + margin-bottom: initial; } + .edit-post-visual-editor.editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper, + .edit-post-visual-editor.editor-styles-wrapper :not(.edit-post-visual-editor__post-title-wrapper) > .editor-post-title, + .components-modal__screen-overlay .edit-post-visual-editor__post-title-wrapper, + .components-modal__screen-overlay :not(.edit-post-visual-editor__post-title-wrapper) > .editor-post-title { + margin: 0 auto 5.35rem auto; + padding: 0; + max-width: calc(1400px - 4.1666667%); + width: calc(100% - 8.33333%); + border-bottom: 2px solid #298596; + border-bottom: 2px solid var(--tainacan-color-default, #298596); } + .edit-post-visual-editor.editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper > .wp-block, + .edit-post-visual-editor.editor-styles-wrapper :not(.edit-post-visual-editor__post-title-wrapper) > .editor-post-title > .wp-block, + .components-modal__screen-overlay .edit-post-visual-editor__post-title-wrapper > .wp-block, + .components-modal__screen-overlay :not(.edit-post-visual-editor__post-title-wrapper) > .editor-post-title > .wp-block { + margin: 0 !important; + padding: 0px; } + .edit-post-visual-editor.editor-styles-wrapper .wp-block.editor-post-title__block, + .edit-post-visual-editor.editor-styles-wrapper .editor-post-title__block .editor-post-title__input, + .components-modal__screen-overlay .wp-block.editor-post-title__block, + .components-modal__screen-overlay .editor-post-title__block .editor-post-title__input { + font-size: 1.25rem; + font-family: 'Roboto', sans-serif; } + .edit-post-visual-editor.editor-styles-wrapper .wp-block.editor-post-title__block textarea, + .edit-post-visual-editor.editor-styles-wrapper .editor-post-title__block .editor-post-title__input textarea, + .components-modal__screen-overlay .wp-block.editor-post-title__block textarea, + .components-modal__screen-overlay .editor-post-title__block .editor-post-title__input textarea { + padding: 3px 6px; + color: #298596; + color: var(--tainacan-color-default, #298596); } + .edit-post-visual-editor.editor-styles-wrapper .block-library-spacer__resize-container, + .components-modal__screen-overlay .block-library-spacer__resize-container { + margin-bottom: initial; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"]:not(:last-child), .edit-post-visual-editor.editor-styles-wrapper .wp-block-columns > .block-editor-inner-blocks > .block-editor-block-list__layout > [data-type="core/column"]:not(:last-child), .components-modal__screen-overlay .wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"]:not(:last-child), @@ -88,38 +191,15 @@ .edit-post-visual-editor.editor-styles-wrapper .wp-block-columns > .wp-block-column[data-type="core/column"]:not(:first-child), .components-modal__screen-overlay .wp-block-columns > .wp-block-column[data-type="core/column"]:not(:first-child) { padding-left: 2.0833333%; } - .edit-post-visual-editor.editor-styles-wrapper .wp-block-columns > .wp-block-column[data-type="core/column"]:not(:first-child), - .components-modal__screen-overlay .wp-block-columns > .wp-block-column[data-type="core/column"]:not(:first-child) { + .edit-post-visual-editor.editor-styles-wrapper .wp-block-columns > .wp-block-column[data-type="core/column"]:not(:last-child), + .components-modal__screen-overlay .wp-block-columns > .wp-block-column[data-type="core/column"]:not(:last-child) { padding-right: 2.0833333%; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-columns > .wp-block-column[data-type="core/column"] > .wp-block, .components-modal__screen-overlay .wp-block-columns > .wp-block-column[data-type="core/column"] > .wp-block { margin-left: 0; - margin-right: 0; } - .edit-post-visual-editor.editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper, - .edit-post-visual-editor.editor-styles-wrapper :not(.edit-post-visual-editor__post-title-wrapper) > .editor-post-title, - .components-modal__screen-overlay .edit-post-visual-editor__post-title-wrapper, - .components-modal__screen-overlay :not(.edit-post-visual-editor__post-title-wrapper) > .editor-post-title { - margin: 0 auto 3em auto; - padding: 0; - max-width: 1400px; - border-bottom: 2px solid #298596; } - .edit-post-visual-editor.editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper > .wp-block, - .edit-post-visual-editor.editor-styles-wrapper :not(.edit-post-visual-editor__post-title-wrapper) > .editor-post-title > .wp-block, - .components-modal__screen-overlay .edit-post-visual-editor__post-title-wrapper > .wp-block, - .components-modal__screen-overlay :not(.edit-post-visual-editor__post-title-wrapper) > .editor-post-title > .wp-block { - margin: 0 14px !important; } - .edit-post-visual-editor.editor-styles-wrapper .wp-block.editor-post-title__block, - .edit-post-visual-editor.editor-styles-wrapper .editor-post-title__block .editor-post-title__input, - .components-modal__screen-overlay .wp-block.editor-post-title__block, - .components-modal__screen-overlay .editor-post-title__block .editor-post-title__input { - font-size: 1.25rem; - font-family: 'Roboto', sans-serif; } - .edit-post-visual-editor.editor-styles-wrapper .wp-block.editor-post-title__block textarea, - .edit-post-visual-editor.editor-styles-wrapper .editor-post-title__block .editor-post-title__input textarea, - .components-modal__screen-overlay .wp-block.editor-post-title__block textarea, - .components-modal__screen-overlay .editor-post-title__block .editor-post-title__input textarea { - padding: 3px 6px; - color: #298596; } + margin-right: 0; + padding-right: 0; + padding-left: 0; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-heading h1, .edit-post-visual-editor.editor-styles-wrapper .wp-block[data-type="core/heading"] h1, .edit-post-visual-editor.editor-styles-wrapper h1.wp-block[data-type="core/heading"], @@ -127,21 +207,28 @@ .components-modal__screen-overlay .wp-block[data-type="core/heading"] h1, .components-modal__screen-overlay h1.wp-block[data-type="core/heading"] { font-size: 1.125rem; - color: #298596; } + color: #298596; + color: var(--tainacan-color-default, #298596); + padding-top: .4rem; + margin-bottom: .5rem; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-heading h2, .edit-post-visual-editor.editor-styles-wrapper .wp-block[data-type="core/heading"] h2, .edit-post-visual-editor.editor-styles-wrapper h2.wp-block[data-type="core/heading"], .components-modal__screen-overlay .wp-block-heading h2, .components-modal__screen-overlay .wp-block[data-type="core/heading"] h2, .components-modal__screen-overlay h2.wp-block[data-type="core/heading"] { - font-size: 1.125rem; } + font-size: 1.125rem; + padding-top: .4rem; + margin-bottom: .5rem; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-heading h3, .edit-post-visual-editor.editor-styles-wrapper .wp-block[data-type="core/heading"] h3, .edit-post-visual-editor.editor-styles-wrapper h3.wp-block[data-type="core/heading"], .components-modal__screen-overlay .wp-block-heading h3, .components-modal__screen-overlay .wp-block[data-type="core/heading"] h3, .components-modal__screen-overlay h3.wp-block[data-type="core/heading"] { - font-size: 1rem; } + font-size: 1rem; + padding-top: .4rem; + margin-bottom: .5rem; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-heading h4, .edit-post-visual-editor.editor-styles-wrapper .wp-block[data-type="core/heading"] h4, .edit-post-visual-editor.editor-styles-wrapper h4.wp-block[data-type="core/heading"], @@ -151,14 +238,18 @@ font-size: 1rem; font-style: italic; font-weight: normal; - color: #555758; } + color: #555758; + padding-top: .4rem; + margin-bottom: .5rem; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-heading h5, .edit-post-visual-editor.editor-styles-wrapper .wp-block[data-type="core/heading"] h5, .edit-post-visual-editor.editor-styles-wrapper h5.wp-block[data-type="core/heading"], .components-modal__screen-overlay .wp-block-heading h5, .components-modal__screen-overlay .wp-block[data-type="core/heading"] h5, .components-modal__screen-overlay h5.wp-block[data-type="core/heading"] { - font-size: 0.875rem; } + font-size: 0.875rem; + padding-top: .4rem; + margin-bottom: .5rem; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-heading h5, .edit-post-visual-editor.editor-styles-wrapper .wp-block[data-type="core/heading"] h5, .edit-post-visual-editor.editor-styles-wrapper h5.wp-block[data-type="core/heading"], @@ -168,7 +259,13 @@ font-size: 0.875rem; font-style: italic; font-weight: normal; - color: #555758; } + color: #555758; + padding-top: .4rem; + margin-bottom: .5rem; } + .edit-post-visual-editor.editor-styles-wrapper p.block-editor-block-list__block.wp-block, + .components-modal__screen-overlay p.block-editor-block-list__block.wp-block { + margin-top: 0.5rem; + margin-bottom: 1rem; } .edit-post-visual-editor.editor-styles-wrapper a, .components-modal__screen-overlay a { text-decoration: none; } @@ -198,12 +295,14 @@ line-height: 1.2rem; } .edit-post-visual-editor.editor-styles-wrapper .components-button.is-button.is-primary, .components-modal__screen-overlay .components-button.is-button.is-primary { - background-color: #298596; } + background-color: #298596; + background-color: var(--tainacan-color-default, #298596); } .edit-post-visual-editor.editor-styles-wrapper .components-button.is-button.is-default, .components-modal__screen-overlay .components-button.is-button.is-default { background: white; border: 1px solid #555758; - color: #298596; } + color: #298596; + color: var(--tainacan-color-default, #298596); } .edit-post-visual-editor.editor-styles-wrapper .components-icon-button:hover:not(.is-default), .edit-post-visual-editor.editor-styles-wrapper .components-icon-button:focus:not(.is-default), .edit-post-visual-editor.editor-styles-wrapper .components-icon-button:active:not(.is-default), @@ -224,15 +323,21 @@ border: 1px solid #555758 !important; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-button__link, .components-modal__screen-overlay .wp-block-button__link { - background-color: #298596; border-radius: 6px; font-size: 0.875rem; padding: 6px 18px; } + .edit-post-visual-editor.editor-styles-wrapper .wp-block-button__link:not(.has-background), + .components-modal__screen-overlay .wp-block-button__link:not(.has-background) { + background-color: #298596; + background-color: var(--tainacan-color-default, #298596); } .edit-post-visual-editor.editor-styles-wrapper .is-style-outline .wp-block-button__link, .components-modal__screen-overlay .is-style-outline .wp-block-button__link { background-color: white; - border: 1px solid #555758; - color: #298596; } + border: 1px solid #555758; } + .edit-post-visual-editor.editor-styles-wrapper .is-style-outline .wp-block-button__link:not(.has-text-color), + .components-modal__screen-overlay .is-style-outline .wp-block-button__link:not(.has-text-color) { + color: #298596; + color: var(--tainacan-color-default, #298596); } .edit-post-visual-editor.editor-styles-wrapper .is-style-squared .wp-block-button__link, .components-modal__screen-overlay .is-style-squared .wp-block-button__link { border-radius: 0px; } @@ -380,12 +485,16 @@ .components-modal__screen-overlay [data-align="full"] .wp-block-cover__inner-container { max-width: 1400px; margin: 0 auto; - padding: 0 8.3333333333%; - padding: 0 8.3333333333vw; } + padding: 0 12.5%; } .edit-post-visual-editor.editor-styles-wrapper [data-align="full"] .wp-block-cover__inner-container > .wp-block, .components-modal__screen-overlay [data-align="full"] .wp-block-cover__inner-container > .wp-block { max-width: 100%; margin: 0; } + .edit-post-visual-editor.editor-styles-wrapper .wp-block-embed figcaption, + .edit-post-visual-editor.editor-styles-wrapper .wp-block-image figcaption, + .components-modal__screen-overlay .wp-block-embed figcaption, + .components-modal__screen-overlay .wp-block-image figcaption { + color: inherit; } .edit-post-visual-editor.editor-styles-wrapper .components-modal__content, .components-modal__screen-overlay .components-modal__content { padding: 32px; @@ -395,7 +504,7 @@ height: 32px; margin: 0 12px 32px 12px; padding: 0; - border-bottom: 1px solid #298596; } + border-bottom: 1px solid var(--tainacan-color-default, #298596); } .edit-post-visual-editor.editor-styles-wrapper .components-modal__header .components-modal__header-heading, .edit-post-visual-editor.editor-styles-wrapper .components-modal__header h1, .components-modal__screen-overlay .components-modal__header .components-modal__header-heading, @@ -501,7 +610,7 @@ font-family: 'Roboto', sans-serif; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-quote:not(.is-style-large):not(.is-large), .components-modal__screen-overlay .wp-block-quote:not(.is-style-large):not(.is-large) { - border-left: 2px solid #298596; } + border-left: 2px solid var(--tainacan-color-default, #298596); } .edit-post-visual-editor.editor-styles-wrapper .wp-block-quote__citation, .components-modal__screen-overlay .wp-block-quote__citation { font-weight: 500; @@ -511,14 +620,27 @@ color: #555758; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-pullquote, .components-modal__screen-overlay .wp-block-pullquote { - border-top: 2px solid #cbcbcb; - border-bottom: 2px solid #cbcbcb; - padding: 1rem 0; } + padding: 0; } + .edit-post-visual-editor.editor-styles-wrapper .wp-block-pullquote:not(.is-style-solid-color), + .components-modal__screen-overlay .wp-block-pullquote:not(.is-style-solid-color) { + border-top: 2px solid var(--tainacan-color-default, #298596); + border-bottom: 2px solid var(--tainacan-color-default, #298596); } + .edit-post-visual-editor.editor-styles-wrapper .wp-block-pullquote blockquote, + .components-modal__screen-overlay .wp-block-pullquote blockquote { + margin: 0; + padding: 2rem 8.3333333%; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-pullquote .block-library-pullquote__content.editor-rich-text p, - .components-modal__screen-overlay .wp-block-pullquote .block-library-pullquote__content.editor-rich-text p { + .edit-post-visual-editor.editor-styles-wrapper .wp-block-pullquote .rich-text.block-editor-rich-text__editable p, + .components-modal__screen-overlay .wp-block-pullquote .block-library-pullquote__content.editor-rich-text p, + .components-modal__screen-overlay .wp-block-pullquote .rich-text.block-editor-rich-text__editable p { font-size: 1.375rem; - color: #298596; font-weight: 500; } + .edit-post-visual-editor.editor-styles-wrapper .wp-block-pullquote :not(.has-text-color) .block-library-pullquote__content.editor-rich-text p, + .edit-post-visual-editor.editor-styles-wrapper .wp-block-pullquote :not(.has-text-color) .rich-text.block-editor-rich-text__editable p, + .components-modal__screen-overlay .wp-block-pullquote :not(.has-text-color) .block-library-pullquote__content.editor-rich-text p, + .components-modal__screen-overlay .wp-block-pullquote :not(.has-text-color) .rich-text.block-editor-rich-text__editable p { + color: #298596; + color: var(--tainacan-color-default, #298596); } .edit-post-visual-editor.editor-styles-wrapper .wp-block-pullquote .wp-block-pullquote__citation, .components-modal__screen-overlay .wp-block-pullquote .wp-block-pullquote__citation { color: #555758; @@ -526,6 +648,24 @@ font-weight: normal; font-style: italic; text-transform: none; } + .edit-post-visual-editor.editor-styles-wrapper .wp-block-separator, + .components-modal__screen-overlay .wp-block-separator { + width: 50%; + max-width: 300px; } + .edit-post-visual-editor.editor-styles-wrapper .wp-block-separator:not(.has-background-color), + .components-modal__screen-overlay .wp-block-separator:not(.has-background-color) { + border-color: #298596; + border-color: var(--tainacan-color-default, #298596); } + .edit-post-visual-editor.editor-styles-wrapper .wp-block-separator.is-style-wide, + .components-modal__screen-overlay .wp-block-separator.is-style-wide { + width: 100%; } + .edit-post-visual-editor.editor-styles-wrapper .wp-block-separator.is-style-dots:not(.has-background-color)::before, + .components-modal__screen-overlay .wp-block-separator.is-style-dots:not(.has-background-color)::before { + color: #298596; + color: var(--tainacan-color-default, #298596); } + .edit-post-visual-editor.editor-styles-wrapper .wp-block-separator.is-style-dots::before, + .components-modal__screen-overlay .wp-block-separator.is-style-dots::before { + font-weight: 600; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-preformatted pre, .components-modal__screen-overlay .wp-block-preformatted pre { color: #555758; @@ -534,7 +674,8 @@ white-space: pre-line; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-code textarea, .components-modal__screen-overlay .wp-block-code textarea { - color: #298596; } + color: #298596; + color: var(--tainacan-color-default, #298596); } .edit-post-visual-editor.editor-styles-wrapper .wp-block-table th, .components-modal__screen-overlay .wp-block-table th { border-bottom: 1px solid #cbcbcb; @@ -579,7 +720,8 @@ margin-right: 12px; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-group.tainacan-group-heading .wp-block-heading, .components-modal__screen-overlay .wp-block-group.tainacan-group-heading .wp-block-heading { - color: #298596 !important; } + color: #298596 !important; + color: var(--tainacan-color-default, #298596) !important; } .edit-post-visual-editor.editor-styles-wrapper .wp-block-group.tainacan-group-heading h1:not(.has-text-color), .edit-post-visual-editor.editor-styles-wrapper .wp-block-group.tainacan-group-heading h2:not(.has-text-color), .edit-post-visual-editor.editor-styles-wrapper .wp-block-group.tainacan-group-heading h3:not(.has-text-color), @@ -588,7 +730,8 @@ .components-modal__screen-overlay .wp-block-group.tainacan-group-heading h2:not(.has-text-color), .components-modal__screen-overlay .wp-block-group.tainacan-group-heading h3:not(.has-text-color), .components-modal__screen-overlay .wp-block-group.tainacan-group-heading h4:not(.has-text-color) { - color: #298596; } + color: #298596 !important; + color: var(--tainacan-color-default, #298596); } .edit-post-visual-editor.editor-styles-wrapper .wp-block-group.tainacan-group-heading h1.wp-block-heading, .edit-post-visual-editor.editor-styles-wrapper .wp-block-group.tainacan-group-heading h1:not(.has-huge-font-size):not(.has-large-font-size):not(.has-medium-font-size):not(.has-normal-font-size):not(.has-small-font-size), .components-modal__screen-overlay .wp-block-group.tainacan-group-heading h1.wp-block-heading, @@ -619,7 +762,8 @@ .components-modal__screen-overlay .wp-block-group.tainacan-group-heading hr.wp-block-separator:not(.is-style-wide) { margin-left: 0; max-width: 200px; - border-color: #298596; } + border-color: #298596; + border-color: var(--tainacan-color-default, #298596); } .edit-post-visual-editor.editor-styles-wrapper .wp-block-group.tainacan-group-heading hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots), .components-modal__screen-overlay .wp-block-group.tainacan-group-heading hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) { border-width: 2px; diff --git a/src/editor-style.css.map b/src/editor-style.css.map index 871981b..69f32d3 100644 --- a/src/editor-style.css.map +++ b/src/editor-style.css.map @@ -1,6 +1,6 @@ { "version": 3, -"mappings": "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", +"mappings": "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", "sources": ["assets/scss/editor-style.scss"], "names": [], "file": "editor-style.css" diff --git a/src/functions.php b/src/functions.php index 8086373..a5ad5d0 100644 --- a/src/functions.php +++ b/src/functions.php @@ -85,15 +85,23 @@ if ( ! function_exists( 'tainacan_setup' ) ) { add_image_size( 'tainacan-interface-list-post', 300, 200, true ); add_image_size( 'tainacan-interface-item-attachments', 125, 125, true ); - /** * Gutenberg support */ + $default_color = '#298596'; + + if (function_exists('tainacan_get_color_scheme')) { + $color_scheme = tainacan_get_color_scheme(); + + if ($color_scheme && $color_scheme[2]) { + $default_color = $color_scheme[2]; + } + } add_theme_support( 'editor-color-palette', array( array( 'name' => __( 'Default', 'tainacan-interface' ), 'slug' => 'default', - 'color' => '#298596', + 'color' => $default_color ), array( 'name' => __( 'Carmine', 'tainacan-interface' ), @@ -150,6 +158,33 @@ if ( ! function_exists( 'tainacan_setup' ) ) { } // End if(). add_action( 'after_setup_theme', 'tainacan_setup' ); +/** + * Passes the custom color to a css variable used on the theme-side editor style + * + */ +function tainacan_customize_editor_css() { + + $default_color = '#298596'; + + if (function_exists('tainacan_get_color_scheme')) { + $color_scheme = tainacan_get_color_scheme(); + + if ($color_scheme && $color_scheme[2]) { + $default_color = $color_scheme[2]; + } + } + + ?> + +