Skip to content

Commit

Permalink
Merge pull request #451 from washingtonstateuniversity/5.2.2
Browse files Browse the repository at this point in the history
5.2.2
  • Loading branch information
danbleile committed Aug 21, 2019
2 parents 79fca78 + 67b0245 commit 59e5091
Show file tree
Hide file tree
Showing 36 changed files with 279 additions and 86 deletions.
27 changes: 26 additions & 1 deletion www/wordpress/wp-admin/about.php
Expand Up @@ -50,6 +50,31 @@

<div class="changelog point-releases">
<h3><?php _e( 'Maintenance and Security Releases' ); ?></h3>
<p>
<?php
printf(
/* translators: 1: WordPress version number, 2: plural number of bugs. */
_n(
'<strong>Version %1$s</strong> addressed %2$s bug.',
'<strong>Version %1$s</strong> addressed %2$s bugs.',
13
),
'5.2.2',
number_format_i18n( 13 )
);
?>
<?php
printf(
/* translators: %s: HelpHub URL */
__( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf(
/* translators: %s: WordPress version */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '5.2.2' )
)
);
?>
</p>
<p>
<?php
printf(
Expand Down Expand Up @@ -126,7 +151,7 @@
</div>
<div class="column is-vertically-aligned-center">
<h3><?php _e( 'PHP Error Protection' ); ?></h3>
<p><?php _e( 'This administrator-focused update will let you safely fix or manage fatal errors without requiring developer time. It features better handling of the so-called “white screen of death,” and a way to enter recovery mode, which pauses error-causing plugins or themes.' ); ?></p>
<p><?php _e( 'This administrator-focused update will let you safely fix or manage fatal errors without requiring developer time. It features better handling of the so-called “white screen of death”, and a way to enter recovery mode, which pauses error-causing plugins or themes.' ); ?></p>
</div>
</div>

Expand Down
28 changes: 17 additions & 11 deletions www/wordpress/wp-admin/css/common-rtl.css
Expand Up @@ -1659,6 +1659,7 @@ form.upgrade .hint {
}

#screen-meta-links {
float: left;
margin: 0 0 0 20px;
}

Expand All @@ -1675,13 +1676,8 @@ form.upgrade .hint {

#screen-options-link-wrap,
#contextual-help-link-wrap {
float: left;
height: 28px;
float: right;
margin: 0 6px 0 0;
border: 1px solid #ddd;
border-top: none;
background: #fff;
box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1);
}

#screen-meta-links .screen-meta-toggle {
Expand All @@ -1690,12 +1686,17 @@ form.upgrade .hint {
}

#screen-meta-links .show-settings {
border: 0;
background: none;
border: 1px solid #ddd;
border-top: none;
border-bottom-color: #ccc;
height: auto;
margin-bottom: 0;
padding: 3px 16px 3px 6px;
background: #fff;
border-radius: 0;
color: #72777c;
line-height: 1.7;
padding: 3px 16px 3px 6px;
box-shadow: none;
}

#screen-meta-links .show-settings:hover,
Expand All @@ -1704,8 +1705,12 @@ form.upgrade .hint {
color: #32373c;
}

#screen-meta-links .show-settings:focus {
border-color: #5b9dd9;
box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
}

#screen-meta-links .show-settings:active {
box-shadow: none;
transform: none;
}

Expand Down Expand Up @@ -3710,6 +3715,7 @@ img {
}

.wrap {
clear: both;
margin-left: 12px;
margin-right: 0;
}
Expand Down Expand Up @@ -3970,7 +3976,7 @@ img {
}

#screen-meta-links {
margin-bottom: 60px; /* Add margins beneath links for better spacing between boxes and elements */
margin-bottom: 20px; /* Add margins beneath links for better spacing between boxes and elements */
}
}

Expand Down
4 changes: 2 additions & 2 deletions www/wordpress/wp-admin/css/common-rtl.min.css

Large diffs are not rendered by default.

28 changes: 17 additions & 11 deletions www/wordpress/wp-admin/css/common.css
Expand Up @@ -1659,6 +1659,7 @@ form.upgrade .hint {
}

#screen-meta-links {
float: right;
margin: 0 20px 0 0;
}

Expand All @@ -1675,13 +1676,8 @@ form.upgrade .hint {

#screen-options-link-wrap,
#contextual-help-link-wrap {
float: right;
height: 28px;
float: left;
margin: 0 0 0 6px;
border: 1px solid #ddd;
border-top: none;
background: #fff;
box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1);
}

#screen-meta-links .screen-meta-toggle {
Expand All @@ -1690,12 +1686,17 @@ form.upgrade .hint {
}

#screen-meta-links .show-settings {
border: 0;
background: none;
border: 1px solid #ddd;
border-top: none;
border-bottom-color: #ccc;
height: auto;
margin-bottom: 0;
padding: 3px 6px 3px 16px;
background: #fff;
border-radius: 0;
color: #72777c;
line-height: 1.7;
padding: 3px 6px 3px 16px;
box-shadow: none;
}

#screen-meta-links .show-settings:hover,
Expand All @@ -1704,8 +1705,12 @@ form.upgrade .hint {
color: #32373c;
}

#screen-meta-links .show-settings:focus {
border-color: #5b9dd9;
box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
}

#screen-meta-links .show-settings:active {
box-shadow: none;
transform: none;
}

Expand Down Expand Up @@ -3710,6 +3715,7 @@ img {
}

.wrap {
clear: both;
margin-right: 12px;
margin-left: 0;
}
Expand Down Expand Up @@ -3970,7 +3976,7 @@ img {
}

#screen-meta-links {
margin-bottom: 60px; /* Add margins beneath links for better spacing between boxes and elements */
margin-bottom: 20px; /* Add margins beneath links for better spacing between boxes and elements */
}
}

Expand Down
4 changes: 2 additions & 2 deletions www/wordpress/wp-admin/css/common.min.css

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions www/wordpress/wp-admin/css/media-rtl.css
Expand Up @@ -698,13 +698,11 @@ border color while dragging a file over the uploader drop area */
color: #000;
}

.edit-attachment-frame .edit-media-header .left:before,
.rtl .edit-attachment-frame .edit-media-header .right:before {
.edit-attachment-frame .edit-media-header .left:before {
content: "\f345";
}

.edit-attachment-frame .edit-media-header .right:before,
.rtl .edit-attachment-frame .edit-media-header .left:before {
.edit-attachment-frame .edit-media-header .right:before {
content: "\f341";
}

Expand Down
2 changes: 1 addition & 1 deletion www/wordpress/wp-admin/css/media-rtl.min.css

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions www/wordpress/wp-admin/css/media.css
Expand Up @@ -698,13 +698,11 @@ border color while dragging a file over the uploader drop area */
color: #000;
}

.edit-attachment-frame .edit-media-header .left:before,
.rtl .edit-attachment-frame .edit-media-header .right:before {
.edit-attachment-frame .edit-media-header .left:before {
content: "\f341";
}

.edit-attachment-frame .edit-media-header .right:before,
.rtl .edit-attachment-frame .edit-media-header .left:before {
.edit-attachment-frame .edit-media-header .right:before {
content: "\f345";
}

Expand Down
2 changes: 1 addition & 1 deletion www/wordpress/wp-admin/css/media.min.css

Large diffs are not rendered by default.

37 changes: 36 additions & 1 deletion www/wordpress/wp-admin/css/site-health-rtl.css
Expand Up @@ -108,15 +108,33 @@
}
}

.health-check-tabs-wrapper {
/* IE 11 */
display: -ms-inline-grid;
-ms-grid-columns: 1fr 1fr;
vertical-align: top;
/* modern browsers */
display: inline-grid;
grid-template-columns: 1fr 1fr;
}

.health-check-tab {
display: inline-block;
display: block; /* IE 11 */
text-decoration: none;
color: inherit;
padding: 0.5rem 1rem 1rem;
margin: 0 1rem;
transition: box-shadow 0.5s ease-in-out;
}

.health-check-tab:nth-child(1) {
-ms-grid-column: 1; /* IE 11 */
}

.health-check-tab:nth-child(2) {
-ms-grid-column: 2; /* IE 11 */
}

.health-check-tab:focus {
color: #191e23;
outline: 1px solid #6c7781;
Expand Down Expand Up @@ -408,6 +426,23 @@
.health-check-accordion-trigger .badge {
margin: 1em 0 0;
}

.health-check-table {
table-layout: fixed;
}

.health-check-table td {
box-sizing: border-box;
display: block;
width: 100%;
word-wrap: break-word;
}

.health-check-table td:first-child {
width: 100%;
padding-bottom: 0;
font-weight: 600;
}
}

/* The breakpoint is usually at 960px, the additional space is to allow for the margin. */
Expand Down
2 changes: 1 addition & 1 deletion www/wordpress/wp-admin/css/site-health-rtl.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 36 additions & 1 deletion www/wordpress/wp-admin/css/site-health.css
Expand Up @@ -108,15 +108,33 @@
}
}

.health-check-tabs-wrapper {
/* IE 11 */
display: -ms-inline-grid;
-ms-grid-columns: 1fr 1fr;
vertical-align: top;
/* modern browsers */
display: inline-grid;
grid-template-columns: 1fr 1fr;
}

.health-check-tab {
display: inline-block;
display: block; /* IE 11 */
text-decoration: none;
color: inherit;
padding: 0.5rem 1rem 1rem;
margin: 0 1rem;
transition: box-shadow 0.5s ease-in-out;
}

.health-check-tab:nth-child(1) {
-ms-grid-column: 1; /* IE 11 */
}

.health-check-tab:nth-child(2) {
-ms-grid-column: 2; /* IE 11 */
}

.health-check-tab:focus {
color: #191e23;
outline: 1px solid #6c7781;
Expand Down Expand Up @@ -408,6 +426,23 @@
.health-check-accordion-trigger .badge {
margin: 1em 0 0;
}

.health-check-table {
table-layout: fixed;
}

.health-check-table td {
box-sizing: border-box;
display: block;
width: 100%;
word-wrap: break-word;
}

.health-check-table td:first-child {
width: 100%;
padding-bottom: 0;
font-weight: 600;
}
}

/* The breakpoint is usually at 960px, the additional space is to allow for the margin. */
Expand Down

0 comments on commit 59e5091

Please sign in to comment.