CSS improvements to provide compatibility with WP 5.8 #52.

This commit is contained in:
mateuswetah 2021-07-12 11:23:19 -03:00
parent 737e34d5d6
commit ecbe1d57fb
4 changed files with 14 additions and 7 deletions

View File

@ -118,6 +118,7 @@ footer {
white-space: normal; white-space: normal;
display: flex; display: flex;
color: #454647; color: #454647;
align-items: center;
input { input {
margin-right: 0.5rem; margin-right: 0.5rem;
} }

View File

@ -76,7 +76,10 @@
/* Buttons */ /* Buttons */
.wp-block-button { .wp-block-button {
margin-bottom: 1rem; margin-bottom: 1rem;
.btn { font-size: 0.875rem; } .btn {
font-size: 0.875rem;
padding: .25rem 1.125rem;
}
} }
.wp-block-button.is-style-outline .btn { .wp-block-button.is-style-outline .btn {
background: white !important; background: white !important;

View File

@ -215,22 +215,22 @@
h4:not(.has-text-color) { h4:not(.has-text-color) {
color:#555758; color:#555758;
} }
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) { 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):not(.metadata-label) {
font-size: 1.125rem; font-size: 1.125rem;
} }
h2: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) { h2: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):not(.metadata-label) {
font-size: 1.125rem; font-size: 1.125rem;
} }
h3: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) { h3: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):not(.metadata-label) {
font-size: 1rem; font-size: 1rem;
} }
h4: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) { h4: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):not(.metadata-label) {
font-size: 1rem; font-size: 1rem;
} }
h5: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) { h5: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):not(.metadata-label) {
font-size: 0.875rem; font-size: 0.875rem;
} }
h6: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) { h6: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):not(.metadata-label) {
font-size: 0.875rem; font-size: 0.875rem;
} }
pre:not(.wp-block-code) { pre:not(.wp-block-code) {

View File

@ -25,6 +25,9 @@ body{
&.error404 { &.error404 {
overflow: hidden; overflow: hidden;
} }
p {
font-size: revert;
}
} }
body.loading-content main { body.loading-content main {