Move blocks and block styles to the correct places in the CSS structure

There should be no visual changes
This commit is contained in:
Kelly Dwan 2019-10-02 15:54:45 -04:00
parent ef8c78f4f3
commit e6b3fbd989
No known key found for this signature in database
GPG key ID: 8BA5575F3D11575D
10 changed files with 52 additions and 45 deletions

View file

@ -2,36 +2,6 @@
* Add content area styles to the editor (in addition to the front end), so that users see content the way it will
* appear on the front end.
*/
.wp-block-image {
/* Make it fill 100% of the screen */
position: relative;
left: -ms(4);
width: calc( 100% + ( 2 * ms(4) ));
max-width: calc( 100% + ( 2 * ms(4) ));
clear: both;
}
@media screen and (min-width: 960px) {
.wp-block-image {
position: inherit;
left: inherit;
width: inherit;
max-width: inherit;
clear: inherit;
}
}
p.is-style-wporg-tldr {
color: #606A73;
font-style: italic;
}
@media screen and (min-width: 768px) {
p.is-style-wporg-tldr {
text-align: center;
}
}
.entry-content {
position: relative;
color: #555D66;
@ -511,6 +481,25 @@ input.download-button.button-hero:active[type="submit"],
text-decoration: none;
}
.wp-block-image {
/* Make it fill 100% of the screen */
position: relative;
left: -ms(4);
width: calc( 100% + ( 2 * ms(4) ));
max-width: calc( 100% + ( 2 * ms(4) ));
clear: both;
}
@media screen and (min-width: 960px) {
.wp-block-image {
position: inherit;
left: inherit;
width: inherit;
max-width: inherit;
clear: inherit;
}
}
.parallelogram-container {
width: 80%;
margin-left: 10%;
@ -573,4 +562,15 @@ input.download-button.button-hero:active[type="submit"],
}
}
p.is-style-wporg-tldr {
color: #606A73;
font-style: italic;
}
@media screen and (min-width: 768px) {
p.is-style-wporg-tldr {
text-align: center;
}
}
/*# sourceMappingURL=style-editor.css.map */