Exford: Recompiling to fix spacing issues in fullwidth images on mobile screens.

This commit is contained in:
Allan Cole 2019-09-15 14:26:27 -04:00
parent 2a8abfc515
commit 0e33332555
2 changed files with 12 additions and 28 deletions

View file

@ -1896,25 +1896,19 @@ p.has-background {
} }
hr { hr {
border-bottom-color: #CCCCCC; border-bottom: 2px solid #CCCCCC;
border-bottom-width: 2px;
clear: both; clear: both;
margin-right: auto; margin-right: auto;
margin-left: auto; margin-left: auto;
} }
hr.wp-block-separator { hr.wp-block-separator {
border-bottom-color: #CCCCCC; border-bottom: 2px solid #CCCCCC;
/** /**
* Block Options * Block Options
*/ */
} }
hr.wp-block-separator.is-style-wide {
border-bottom-color: #CCCCCC;
border-bottom-width: 2px;
}
hr.wp-block-separator.is-style-dots:before { hr.wp-block-separator.is-style-dots:before {
color: #CCCCCC; color: #CCCCCC;
font-size: 1.728rem; font-size: 1.728rem;
@ -2018,10 +2012,6 @@ table th,
/** /**
* .aligndefault * .aligndefault
*/ */
.entry-content [class*="inner-container"] {
max-width: inherit;
}
/** /**
* .alignwide * .alignwide
*/ */
@ -3204,8 +3194,8 @@ img#wpstats {
} }
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, #masthead { .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, #masthead {
width: calc(100% + 256px); width: 100%;
max-width: calc(100% - 32px); max-width: 100%;
margin-right: auto; margin-right: auto;
margin-left: auto; margin-left: auto;
} }
@ -3291,6 +3281,7 @@ img#wpstats {
margin-right: -16px; margin-right: -16px;
margin-left: -16px; margin-left: -16px;
width: calc(100% + 32px); width: calc(100% + 32px);
max-width: calc(100% + 32px);
/* Letting the box-model do most of the work here. */ /* Letting the box-model do most of the work here. */
} }
@ -3299,6 +3290,7 @@ img#wpstats {
margin-right: inherit; margin-right: inherit;
margin-left: inherit; margin-left: inherit;
width: inherit; width: inherit;
max-width: inherit;
} }
} }

View file

@ -1896,25 +1896,19 @@ p.has-background {
} }
hr { hr {
border-bottom-color: #CCCCCC; border-bottom: 2px solid #CCCCCC;
border-bottom-width: 2px;
clear: both; clear: both;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
} }
hr.wp-block-separator { hr.wp-block-separator {
border-bottom-color: #CCCCCC; border-bottom: 2px solid #CCCCCC;
/** /**
* Block Options * Block Options
*/ */
} }
hr.wp-block-separator.is-style-wide {
border-bottom-color: #CCCCCC;
border-bottom-width: 2px;
}
hr.wp-block-separator.is-style-dots:before { hr.wp-block-separator.is-style-dots:before {
color: #CCCCCC; color: #CCCCCC;
font-size: 1.728rem; font-size: 1.728rem;
@ -2023,10 +2017,6 @@ table th,
/** /**
* .aligndefault * .aligndefault
*/ */
.entry-content [class*="inner-container"] {
max-width: inherit;
}
/** /**
* .alignwide * .alignwide
*/ */
@ -3221,8 +3211,8 @@ img#wpstats {
} }
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, #masthead { .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery, #masthead {
width: calc(100% + 256px); width: 100%;
max-width: calc(100% - 32px); max-width: 100%;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
} }
@ -3308,6 +3298,7 @@ img#wpstats {
margin-left: -16px; margin-left: -16px;
margin-right: -16px; margin-right: -16px;
width: calc(100% + 32px); width: calc(100% + 32px);
max-width: calc(100% + 32px);
/* Letting the box-model do most of the work here. */ /* Letting the box-model do most of the work here. */
} }
@ -3316,6 +3307,7 @@ img#wpstats {
margin-left: inherit; margin-left: inherit;
margin-right: inherit; margin-right: inherit;
width: inherit; width: inherit;
max-width: inherit;
} }
} }