Merge branch 'develop' of github.com:tainacan/tainacan-theme into develop

This commit is contained in:
Alvino Rodrigues 2019-03-18 17:17:29 -03:00
commit 3856a68ba1
6 changed files with 319 additions and 83 deletions

View File

@ -1,8 +1,10 @@
.alignwide {
margin: 0 calc(-8.3333333333vw + 15px) !important;
margin-left: calc(-8.3333333333vw + 15px) !important;
margin-right: calc(-8.3333333333vw + 15px) !important;
@media only screen and (min-width: 1800px) {
margin: 0 calc(-1*(87.5vw - 1415px)/2) !important !important;
margin-left: calc(-1*(87.5vw - 1415px)/2) !important !important;
margin-right: calc(-1*(87.5vw - 1415px)/2) !important !important;
}
}
.wp-block-image.alignwide>img {
@ -20,11 +22,42 @@
.alignfull {
margin-left: calc( -100vw / 2 + 100% / 2 ) !important;
margin-right: calc( -100vw / 2 + 100% / 2 ) !important;
max-width : 100%;
max-width : 100vw;
width: 100%;
width: 100vw;
}
.wp-block-image.alignfull>img {
max-width: 100% !important;
width: 100% !important;
max-width: 100vw !important;
width: 100vw !important;
padding: 0 !important;
}
/* Buttons */
.wp-block-button {
margin-bottom: 1rem;
.btn { font-size: 0.875rem; }
}
.wp-block-button.is-style-outline .btn {
background: white !important;
color: #298596;
border: 1px solid #555758 !important
}
.wp-block-button.aligncenter,
.wp-block-button.alignleft,
.wp-block-button.alignright {
display: block;
}
/* Media and Text */
.wp-block-media-text {
margin-top: 2rem;
margin-bottom: 2rem;
.wp-block-media-text__content {
padding: 0.75rem 4.16666667%;
padding: 0.75rem 4.1666667vw;
}
}

View File

@ -60,7 +60,7 @@
font-weight: 600;
}
h4 {
color: #898d8f;
color: #555758;
font-size: 1rem;
font-style: italic;
}
@ -75,7 +75,7 @@
font-weight: 400;
}
pre:not(.wp-block-code) {
color: #898d8f;
color: #555758;
font-size: 1rem;
font-weight: 400;
white-space: pre-line;
@ -83,25 +83,32 @@
.wp-block-code {
code {
font-size: 0.875rem;
color: #e83e8c;
color: #298596;
word-break: break-word;
}
}
blockquote:not(.wp-block-pullquote), .wp-block-quote {
border-left:2px solid #298596;
margin-left: 4.16666666667%;
margin-right: 4.16666666667%;
.wp-block-quote {
margin: 3rem 8.33333%;
padding: 1rem;
p {
color: #898d8f;
font-size: 1.375rem;
font-weight: 500;
color: #555758;
font-size: 1rem;
font-weight: normal;
}
cite {
color: #298596;
float: right;
color: #555758;
display: block;
width: 100%;
text-align: right;
font-size: 1rem;
font-weight: 400;
font-weight: 500;
font-style: italic;
}
&:not(.is-style-large) {
border-left: 2px solid #298596;
}
&.is-style-large {
font-size: 1.375rem;
}
}
.wp-block-separator {
@ -125,12 +132,12 @@
.table {
thead {
border-bottom: 1px solid #cbcbcb;
color: #898d8f;
color: #555758;
font-weight: 400;
font-size: 0.75rem;
}
tbody {
font-size: 0.75rem;
font-size: 0.875rem;
font-weight: 400;
color: #000;
}
@ -174,6 +181,26 @@
content: "";
}
}
.wp-block-columns {
display: flex;
@media only screen and (max-width: 781px){
.wp-block-column {
margin-left: 0 !important;
margin-right: 0 !important;
}
}
.wp-block-column {
flex-basis: 100%;
}
.wp-block-column:not(:last-child) {
margin-right: 4.16666667%;
}
.wp-block-column:not(:first-child) {
margin-left: 4.16666667%;
}
}
.alignleft {
float:left;
margin: 0 1em 1em 0;
@ -193,8 +220,7 @@
}
}
img {
padding: 6px;
max-width: calc( 100% - 14px );
max-width: 100%;
&.alignleft {
float: left;
margin-right: 1.625em;
@ -228,9 +254,6 @@
margin-right: auto;
}
}
figure {
margin: 16px 40px;
}
.wp-block-cover-image{
width: 99.5vw;
position: relative;
@ -279,18 +302,27 @@
}
}
.wp-block-pullquote{
border-top: 1px solid #cbcbcb;
border-bottom: 1px solid #cbcbcb;
p {
color: #298596;
font: {
size: 1.375rem;
weight: 500;
margin: 3rem 0;
padding: 0;
border: none;
blockquote {
border-top: 2px solid #cbcbcb;
border-bottom: 2px solid #cbcbcb;
padding: 2rem 8.3333333%;
p {
font-size: 1.375rem;
color: #298596;
font-weight: 500;
}
cite {
color: #555758;
font-size: 1rem;
font-weight: normal;
font-style: italic;
text-transform: none;
}
}
cite {
font-size: 1rem;
color: #898d8f;
}
}
.wp-caption, .gallery-caption {

View File

@ -3,16 +3,29 @@
font-family: 'Roboto', sans-serif !important;
// Editor Block list side spacing
.editor-block-list__layout {
padding-left: 4.16667%;
padding-right: 4.16667%;
padding-left: 8.3333333%;
padding-right: 8.3333333%;
}
// Inner blocks do not need all that spacing,
// otherwise they won't match their theme result
.editor-inner-blocks,
.editor-inner-blocks>.editor-block-list__layout {
padding-left: 0;
padding-right: 0;
.wp-block {
margin-right: 4.1666667%;
margin-left: 4.1666667%;
}
}
/* Main column width */
.wp-block {
max-width: 1400px;
margin-left: 8.3333333333%;
margin-right: 8.3333333333%;
margin-left: 8.3333333%;
margin-right: 8.3333333%;
}
/* Width of "wide" blocks */
@ -23,24 +36,41 @@
/* Width of "full" blocks */
.wp-block[data-align="full"] {
max-width: calc(100% + 8.333333333%);
width: calc(100% + 8.333333333%);
margin-left: -4.16667%;
margin-right: -4.16667%;
max-width: calc(100% + 16.6666667% + 25px);
width: calc(100% + 16.6666667% + 25px);
margin-left: calc(-8.3333333% - 19px);
margin-right: -8.3333333%;
}
/* Columns */
.wp-block-columns>.editor-inner-blocks >.editor-block-list__layout> [data-type="core/column"]:not(:last-child) {
margin-right: 4.1666667%;
}
.wp-block-columns>.editor-inner-blocks >.editor-block-list__layout> [data-type="core/column"]:not(:first-child) {
margin-left: 4.1666667%;
}
.wp-block-columns>.editor-inner-blocks >.editor-block-list__layout> [data-type="core/column"] {
margin-left: 0;
margin-right: 0;
}
/* Post title */
.editor-post-title {
margin: 0 8.3333333% 3rem 8.3333333%;
padding: 0;
border-bottom: 2px solid #298596;
}
.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;
}
}
.wp-block.editor-post-title__block {
border-bottom: 2px solid #3f3f3f;
margin-bottom: 24px;
margin: 0;
}
/* Heading */
@ -64,6 +94,7 @@
border-radius: 6px;
height: auto;
text-shadow: none;
font-size: 0.875rem;
&:active:not(.is-default) {
color: white;
@ -85,13 +116,35 @@
border: 1px solid #555758;
color: #298596;
}
.components-icon-button:hover,
.components-icon-button:focus,
.components-icon-button:active {
.components-icon-button:hover:not(.is-default),
.components-icon-button:focus:not(.is-default),
.components-icon-button:active:not(.is-default) {
box-shadow: none !important;
background: none !important;
border: none !important;
}
.components-icon-button.is-default:hover,
.components-icon-button.is-default:focus,
.components-icon-button.is-default:active {
box-shadow: none !important;
background: white !important;
border: 1px solid #555758 !important;
}
.wp-block-button__link {
background-color: #298596;
border-radius: 6px;
font-size: 0.875rem;
padding: 6px 18px;
}
.is-style-outline .wp-block-button__link {
background-color: white;
border: 1px solid #555758;
color: #298596;
}
.is-style-squared .wp-block-button__link {
border-radius: 0px;
}
/* Text input */
.components-modal__content .input-control,
@ -212,26 +265,36 @@
}
/* Blockquote */
.wp-block-quote:not(.is-large):not(.is-style-large) {
border-left: 2px solid #298596;
.wp-block-quote {
margin: 3rem 8.33333%;
padding: 1rem;
color: #555758;
font-weight: normal;
font-size: 1.125rem;
font-size: 1rem;
}
.wp-block-quote.is-style-large {
font-size: 1.375rem;
font-family: 'Roboto', sans-serif;
}
.wp-block-quote:not(.is-style-large):not(.is-large) {
border-left: 2px solid #298596;
}
.wp-block-quote__citation {
font-weight: 500;
font-size: 1rem;
text-align: right;
color: #298596;
font-style: italic;
color: #555758;
}
/* Pullquote */
.wp-block-pullquote {
border-top: 2px solid #cbcbcb;
border-bottom: 2px solid #cbcbcb;
padding: 2rem 0;
padding: 1rem 0;
.block-library-pullquote__content.editor-rich-text p {
font-size: 1.125rem;
font-size: 1.375rem;
color: #298596;
font-weight: 500;
}
@ -244,12 +307,26 @@
}
}
/* Pre */
.wp-block-preformatted pre {
color: #555758;
font-size: 1rem;
font-weight: 400;
white-space: pre-line;
}
/* Code */
.wp-block-code textarea {
color: #298596;
}
/* Tables */
.wp-block-table th {
border-bottom: 1px solid #cbcbcb;
}
.wp-block-table td {
border: 1px solid #f2f2f2;
font-size: 0.875rem;
}
/* Tainacan Selection Modal */

View File

@ -4,6 +4,7 @@
/* Main column width */
/* Width of "wide" blocks */
/* Width of "full" blocks */
/* Columns */
/* Post title */
/* Heading */
/* Buttons */
@ -14,27 +15,56 @@
/* Checkboxes and Radio Buttons*/
/* Blockquote */
/* Pullquote */
/* Pre */
/* Code */
/* Tables */
/* Tainacan Selection Modal */ }
.edit-post-visual-editor.editor-styles-wrapper .editor-block-list__layout,
.components-modal__screen-overlay .editor-block-list__layout {
padding-left: 4.16667%;
padding-right: 4.16667%; }
padding-left: 8.3333333%;
padding-right: 8.3333333%; }
.edit-post-visual-editor.editor-styles-wrapper .editor-inner-blocks,
.edit-post-visual-editor.editor-styles-wrapper .editor-inner-blocks > .editor-block-list__layout,
.components-modal__screen-overlay .editor-inner-blocks,
.components-modal__screen-overlay .editor-inner-blocks > .editor-block-list__layout {
padding-left: 0;
padding-right: 0; }
.edit-post-visual-editor.editor-styles-wrapper .editor-inner-blocks .wp-block,
.edit-post-visual-editor.editor-styles-wrapper .editor-inner-blocks > .editor-block-list__layout .wp-block,
.components-modal__screen-overlay .editor-inner-blocks .wp-block,
.components-modal__screen-overlay .editor-inner-blocks > .editor-block-list__layout .wp-block {
margin-right: 4.1666667%;
margin-left: 4.1666667%; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block,
.components-modal__screen-overlay .wp-block {
max-width: 1400px;
margin-left: 8.3333333333%;
margin-right: 8.3333333333%; }
margin-left: 8.3333333%;
margin-right: 8.3333333%; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block[data-align="wide"],
.components-modal__screen-overlay .wp-block[data-align="wide"] {
margin-left: auto;
margin-right: auto; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block[data-align="full"],
.components-modal__screen-overlay .wp-block[data-align="full"] {
max-width: calc(100% + 8.333333333%);
width: calc(100% + 8.333333333%);
margin-left: -4.16667%;
margin-right: -4.16667%; }
max-width: calc(100% + 16.6666667% + 25px);
width: calc(100% + 16.6666667% + 25px);
margin-left: calc(-8.3333333% - 19px);
margin-right: -8.3333333%; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block-columns > .editor-inner-blocks > .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) {
margin-right: 4.1666667%; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"]:not(:first-child),
.components-modal__screen-overlay .wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"]:not(:first-child) {
margin-left: 4.1666667%; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"],
.components-modal__screen-overlay .wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] {
margin-left: 0;
margin-right: 0; }
.edit-post-visual-editor.editor-styles-wrapper .editor-post-title,
.components-modal__screen-overlay .editor-post-title {
margin: 0 8.3333333% 3rem 8.3333333%;
padding: 0;
border-bottom: 2px solid #298596; }
.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,
@ -45,11 +75,11 @@
.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; }
padding: 3px 6px;
color: #298596; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block.editor-post-title__block,
.components-modal__screen-overlay .wp-block.editor-post-title__block {
border-bottom: 2px solid #3f3f3f;
margin-bottom: 24px; }
margin: 0; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block-heading h2,
.components-modal__screen-overlay .wp-block-heading h2 {
font-size: 1.125rem; }
@ -68,7 +98,8 @@
box-shadow: none;
border-radius: 6px;
height: auto;
text-shadow: none; }
text-shadow: none;
font-size: 0.875rem; }
.edit-post-visual-editor.editor-styles-wrapper .components-button.is-button:active:not(.is-default),
.components-modal__screen-overlay .components-button.is-button:active:not(.is-default) {
color: white; }
@ -88,15 +119,38 @@
background: white;
border: 1px solid #555758;
color: #298596; }
.edit-post-visual-editor.editor-styles-wrapper .components-icon-button:hover,
.edit-post-visual-editor.editor-styles-wrapper .components-icon-button:focus,
.edit-post-visual-editor.editor-styles-wrapper .components-icon-button:active,
.components-modal__screen-overlay .components-icon-button:hover,
.components-modal__screen-overlay .components-icon-button:focus,
.components-modal__screen-overlay .components-icon-button:active {
.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),
.components-modal__screen-overlay .components-icon-button:hover:not(.is-default),
.components-modal__screen-overlay .components-icon-button:focus:not(.is-default),
.components-modal__screen-overlay .components-icon-button:active:not(.is-default) {
box-shadow: none !important;
background: none !important;
border: none !important; }
.edit-post-visual-editor.editor-styles-wrapper .components-icon-button.is-default:hover,
.edit-post-visual-editor.editor-styles-wrapper .components-icon-button.is-default:focus,
.edit-post-visual-editor.editor-styles-wrapper .components-icon-button.is-default:active,
.components-modal__screen-overlay .components-icon-button.is-default:hover,
.components-modal__screen-overlay .components-icon-button.is-default:focus,
.components-modal__screen-overlay .components-icon-button.is-default:active {
box-shadow: none !important;
background: white !important;
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 .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; }
.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; }
.edit-post-visual-editor.editor-styles-wrapper .components-modal__content .input-control,
.edit-post-visual-editor.editor-styles-wrapper .components-modal__content input[type="date"],
.edit-post-visual-editor.editor-styles-wrapper .components-modal__content input[type="datetime-local"],
@ -325,25 +379,35 @@
.components-modal__screen-overlay .editor-block-list__block input[type="checkbox"]:focus,
.components-modal__screen-overlay .editor-block-list__block input[type="radio"]:focus {
box-shadow: none; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block-quote:not(.is-large):not(.is-style-large),
.components-modal__screen-overlay .wp-block-quote:not(.is-large):not(.is-style-large) {
border-left: 2px solid #298596;
.edit-post-visual-editor.editor-styles-wrapper .wp-block-quote,
.components-modal__screen-overlay .wp-block-quote {
margin: 3rem 8.33333%;
padding: 1rem;
color: #555758;
font-weight: normal;
font-size: 1.125rem; }
font-size: 1rem; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block-quote.is-style-large,
.components-modal__screen-overlay .wp-block-quote.is-style-large {
font-size: 1.375rem;
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; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block-quote__citation,
.components-modal__screen-overlay .wp-block-quote__citation {
font-weight: 500;
font-size: 1rem;
text-align: right;
color: #298596; }
font-style: italic;
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: 2rem 0; }
padding: 1rem 0; }
.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 {
font-size: 1.125rem;
font-size: 1.375rem;
color: #298596;
font-weight: 500; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block-pullquote .wp-block-pullquote__citation,
@ -353,12 +417,22 @@
font-weight: normal;
font-style: italic;
text-transform: none; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block-preformatted pre,
.components-modal__screen-overlay .wp-block-preformatted pre {
color: #555758;
font-size: 1rem;
font-weight: 400;
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; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block-table th,
.components-modal__screen-overlay .wp-block-table th {
border-bottom: 1px solid #cbcbcb; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block-table td,
.components-modal__screen-overlay .wp-block-table td {
border: 1px solid #f2f2f2; }
border: 1px solid #f2f2f2;
font-size: 0.875rem; }
.edit-post-visual-editor.editor-styles-wrapper .wp-block-tainacan-modal .modal-footer-area,
.components-modal__screen-overlay .wp-block-tainacan-modal .modal-footer-area {
margin: 0;

View File

@ -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"

View File

@ -579,16 +579,21 @@ function tainacan_get_color_scheme_css( $colors ) {
.tainacan-title-page,
.tainacan-list-post .blog-post .blog-content .blog-read,
.tainacan-list-post .blog-post .blog-content .blog-read:hover,
.tainacan-content .wp-block-button a,
.tainacan-content .wp-block-button a:hover {
.tainacan-content .wp-block-button:not(.is-style-outline) a,
.tainacan-content .wp-block-button:not(.is-style-outline) a:hover {
border-color: {$colors['tainacan_link_color']} !important;
}
.tainacan-list-post .blog-post .blog-content .blog-read,
.tainacan-list-post .blog-post .blog-content .blog-read:hover,
.tainacan-content .wp-block-button a,
.tainacan-content .wp-block-button a:hover {
.tainacan-content .wp-block-button:not(.is-style-outline) a,
.tainacan-content .wp-block-button:not(.is-style-outline) a:hover {
background-color: {$colors['tainacan_link_color']};
}
.tainacan-content .wp-block-button.is-style-outline a,
.tainacan-content .wp-block-button.is-style-outline a:hover {
color: {$colors['tainacan_link_color']} !important;
}
nav .dropdown-menu .dropdown-item:hover {
background-color: {$colors['backtransparent']};
}
@ -601,6 +606,21 @@ function tainacan_get_color_scheme_css( $colors ) {
background-color: {$colors['tainacan_link_color']} !important;
}
/* Blockquote */
.wp-block-quote:not(.is-large):not(.is-style-large) {
border-left-color: {$colors['tainacan_link_color']} !important;
}
/* Pullquote */
.wp-block-pullquote p {
color: {$colors['tainacan_link_color']} !important;
}
/* Code */
.wp-block-code code {
color: {$colors['tainacan_link_color']} !important;
}
/**
* Tainacan Collections
*/