Build/Test Tools: Update the caniuse-lite database.

This updates the `caniuse-lite` database to the most recent version (`1.0.30001214`) by running `npx browserslist@latest --update-db`.

The resulting changes after running `grunt precommit:css` are also included in this commit.

See #52624.
Built from https://develop.svn.wordpress.org/trunk@50782


git-svn-id: http://core.svn.wordpress.org/trunk@50391 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2021-04-22 00:56:05 +00:00
parent aa3d0715ab
commit 2d7eb07747
17 changed files with 15 additions and 17 deletions

View File

@ -574,6 +574,8 @@
}
.about__container .about__image-comparison img {
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
width: auto;
max-width: none;

File diff suppressed because one or more lines are too long

View File

@ -573,6 +573,8 @@
}
.about__container .about__image-comparison img {
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
width: auto;
max-width: none;

File diff suppressed because one or more lines are too long

View File

@ -3149,7 +3149,6 @@ img {
font-size: 13px;
background: #f6f7f7;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
}

File diff suppressed because one or more lines are too long

View File

@ -3148,7 +3148,6 @@ img {
font-size: 13px;
background: #f6f7f7;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
}

File diff suppressed because one or more lines are too long

View File

@ -1580,7 +1580,6 @@ p.customize-section-description {
font-size: 12px;
padding: 6px 8px;
-moz-tab-size: 2;
-o-tab-size: 2;
tab-size: 2;
}
.customize-control-code_editor textarea,

File diff suppressed because one or more lines are too long

View File

@ -1579,7 +1579,6 @@ p.customize-section-description {
font-size: 12px;
padding: 6px 8px;
-moz-tab-size: 2;
-o-tab-size: 2;
tab-size: 2;
}
.customize-control-code_editor textarea,

File diff suppressed because one or more lines are too long

View File

@ -892,10 +892,9 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
}
@media only screen and (min-width: 783px) {
@supports ((position: -webkit-sticky) or (position: sticky)) and (scroll-margin-bottom: 130px) {
@supports (position: sticky) and (scroll-margin-bottom: 130px) {
#nav-menu-footer {
position: -webkit-sticky;
position: sticky;
bottom: 0;
z-index: 10;

File diff suppressed because one or more lines are too long

View File

@ -891,10 +891,9 @@ body.menu-max-depth-11 { min-width: 1280px !important; }
}
@media only screen and (min-width: 783px) {
@supports ((position: -webkit-sticky) or (position: sticky)) and (scroll-margin-bottom: 130px) {
@supports (position: sticky) and (scroll-margin-bottom: 130px) {
#nav-menu-footer {
position: -webkit-sticky;
position: sticky;
bottom: 0;
z-index: 10;

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.8-alpha-50781';
$wp_version = '5.8-alpha-50782';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.