Skip to content

Commit

Permalink
Refresh WordPress Nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
deployment_bot committed Oct 11, 2024
1 parent 434cb62 commit 8e4b1f1
Show file tree
Hide file tree
Showing 68 changed files with 2,447 additions and 2,244 deletions.
3,656 changes: 1,827 additions & 1,829 deletions packages/playground/wordpress-builds/public/wp-nightly/wordpress-remote-asset-paths

Large diffs are not rendered by default.

Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -115,28 +115,28 @@ textarea:focus {
.button:hover,
.button.focus,
.button:focus {
border-color: darken( #7e8993, 5% );
color: darken( #32373c, 5% );
border-color: color.adjust(#7e8993, $lightness: -5%);
color: color.adjust(#32373c, $lightness: -5%);
}

.button.focus,
.button:focus {
border-color: #7e8993;
color: darken( #32373c, 5% );
color: color.adjust(#32373c, $lightness: -5%);
box-shadow: 0 0 0 1px #32373c;
}

.button:active {
border-color: #7e8993;
color: darken( #32373c, 5% );
color: color.adjust(#32373c, $lightness: -5%);
box-shadow: none;
}

.button.active,
.button.active:focus,
.button.active:hover {
border-color: $button-color;
color: darken( #32373c, 5% );
color: color.adjust(#32373c, $lightness: -5%);
box-shadow: inset 0 2px 5px -3px $button-color;
}

Expand All @@ -154,16 +154,16 @@ textarea:focus {
.button.hover,
.button:hover,
.button-secondary:hover{
border-color: darken($highlight-color, 10);
color: darken($highlight-color, 10);
border-color: color.adjust($highlight-color, $lightness: -10%);
color: color.adjust($highlight-color, $lightness: -10%);
}

.button.focus,
.button:focus,
.button-secondary:focus {
border-color: lighten($highlight-color, 10);
color: darken($highlight-color, 20);;
box-shadow: 0 0 0 1px lighten($highlight-color, 10);
border-color: color.adjust($highlight-color, $lightness: 10%);
color: color.adjust($highlight-color, $lightness: -20%);
box-shadow: 0 0 0 1px color.adjust($highlight-color, $lightness: 10%);
}

.button-primary {
Expand Down Expand Up @@ -225,14 +225,14 @@ textarea:focus {
}

.wrap .page-title-action:hover {
color: darken($highlight-color, 10);
border-color: darken($highlight-color, 10);
color: color.adjust($highlight-color, $lightness: -10%);
border-color: color.adjust($highlight-color, $lightness: -10%);
}

.wrap .page-title-action:focus {
border-color: lighten($highlight-color, 10);
color: darken($highlight-color, 20);;
box-shadow: 0 0 0 1px lighten($highlight-color, 10);
border-color: color.adjust($highlight-color, $lightness: 10%);
color: color.adjust($highlight-color, $lightness: -20%);
box-shadow: 0 0 0 1px color.adjust($highlight-color, $lightness: 10%);
}
}

Expand Down Expand Up @@ -539,7 +539,7 @@ ul#adminmenu > li.current > a.current:after {

.wp-pointer .wp-pointer-content h3 {
background-color: $highlight-color;
border-color: darken( $highlight-color, 5% );
border-color: color.adjust($highlight-color, $lightness: -5%);
}

.wp-pointer .wp-pointer-content h3:before {
Expand Down Expand Up @@ -632,7 +632,7 @@ body.more-filters-opened .more-filters:focus:before {

.nav-menus-php .item-edit:focus:before {
box-shadow:
0 0 0 1px lighten($button-color, 10),
0 0 0 1px color.adjust($button-color, $lightness: 10%),
0 0 2px 1px $button-color;
}

Expand Down Expand Up @@ -711,7 +711,7 @@ div#wp-responsive-toggle a:before {
#customize-save-button-wrapper .save:focus,
#publish-settings:focus {
box-shadow:
0 0 0 1px lighten($button-color, 10),
0 0 0 1px color.adjust($button-color, $lightness: 10%),
0 0 2px 1px $button-color;
}

Expand Down Expand Up @@ -772,7 +772,7 @@ div#wp-responsive-toggle a:before {
.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
.wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
box-shadow:
0 0 0 1px lighten($button-color, 10),
0 0 0 1px color.adjust($button-color, $lightness: 10%),
0 0 2px 1px $button-color;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

&:hover,
&:focus {
background: lighten( $button-color, 3% );
border-color: darken( $button-color, 3% );
background: color.adjust($button-color, $lightness: 3%);
border-color: color.adjust($button-color, $lightness: -3%);
color: $button-text-color;
}

Expand All @@ -21,8 +21,8 @@
}

&:active {
background: darken( $button-color, 5% );
border-color: darken( $button-color, 5% );
background: color.adjust($button-color, $lightness: -5%);
border-color: color.adjust($button-color, $lightness: -5%);
color: $button-text-color;
}

Expand All @@ -31,7 +31,7 @@
&.active:hover {
background: $button-color;
color: $button-text-color;
border-color: darken( $button-color, 15% );
box-shadow: inset 0 2px 5px -3px darken( $button-color, 50% );
border-color: color.adjust($button-color, $lightness: -15%);
box-shadow: inset 0 2px 5px -3px color.adjust($button-color, $lightness: -50%);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ $scheme-name: "default" !default;

$text-color: #fff !default;
$base-color: #23282d !default;
$icon-color: hsl( hue( $base-color ), 7%, 95% ) !default;
$icon-color: hsl(color.channel($base-color, "hue", $space: hsl), 7%, 95%) !default;
$highlight-color: #0073aa !default;
$notification-color: #d54e21 !default;

Expand All @@ -16,7 +16,7 @@ $notification-color: #d54e21 !default;
$body-background: #f1f1f1 !default;

$link: #0073aa !default;
$link-focus: lighten( $link, 10% ) !default;
$link-focus: color.adjust($link, $lightness: 10%) !default;

$button-color: $highlight-color !default;
$button-text-color: $text-color !default;
Expand All @@ -38,8 +38,8 @@ $menu-current-icon: $menu-highlight-icon !default;
$menu-current-background: $menu-highlight-background !default;

$menu-submenu-text: mix( $base-color, $text-color, 30% ) !default;
$menu-submenu-background: darken( $base-color, 7% ) !default;
$menu-submenu-background-alt: desaturate( lighten( $menu-background, 7% ), 7% ) !default;
$menu-submenu-background: color.adjust($base-color, $lightness: -7%) !default;
$menu-submenu-background-alt: color.adjust(color.adjust($menu-background, $lightness: 7%), $saturation: -7%) !default;

$menu-submenu-focus-text: $highlight-color !default;
$menu-submenu-current-text: $text-color !default;
Expand All @@ -54,8 +54,8 @@ $menu-collapse-icon: $menu-icon !default;
$menu-collapse-focus-text: $text-color !default;
$menu-collapse-focus-icon: $menu-highlight-icon !default;

$adminbar-avatar-frame: lighten( $menu-background, 7% ) !default;
$adminbar-input-background: lighten( $menu-background, 7% ) !default;
$adminbar-avatar-frame: color.adjust($menu-background, $lightness: 7%) !default;
$adminbar-input-background: color.adjust($menu-background, $lightness: 7%) !default;

$adminbar-recovery-exit-text: $menu-bubble-text !default;
$adminbar-recovery-exit-background: $menu-bubble-background !default;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use "sass:color";

$scheme-name: "blue";
$base-color: #52accc;
$icon-color: #e5f8ff;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use "sass:color";

$scheme-name: "coffee";
$base-color: #59524c;
$highlight-color: #c7a589;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ textarea:focus {
background: #a3b745;
color: #fff;
border-color: rgb(113.5178571429, 127.4464285714, 48.0535714286);
box-shadow: inset 0 2px 5px -3px black;
box-shadow: inset 0 2px 5px -3px hsl(70.5263157895, 45.2380952381%, -0.5882352941%);
}
.wp-core-ui .button-group > .button.active {
border-color: #a3b745;
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ textarea:focus {
background: #a3b745;
color: #fff;
border-color: rgb(113.5178571429, 127.4464285714, 48.0535714286);
box-shadow: inset 0 2px 5px -3px black;
box-shadow: inset 0 2px 5px -3px hsl(70.5263157895, 45.2380952381%, -0.5882352941%);
}
.wp-core-ui .button-group > .button.active {
border-color: #a3b745;
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use "sass:color";

$scheme-name: "ectoplasm";
$base-color: #523f6d;
$icon-color: #ece6f6;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ textarea:focus {
background: #04a4cc;
color: #fff;
border-color: rgb(2.5288461538, 103.6826923077, 128.9711538462);
box-shadow: inset 0 2px 5px -3px black;
box-shadow: inset 0 2px 5px -3px hsl(192, 96.1538461538%, -9.2156862745%);
}
.wp-core-ui .button-group > .button.active {
border-color: #04a4cc;
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ textarea:focus {
background: #04a4cc;
color: #fff;
border-color: rgb(2.5288461538, 103.6826923077, 128.9711538462);
box-shadow: inset 0 2px 5px -3px black;
box-shadow: inset 0 2px 5px -3px hsl(192, 96.1538461538%, -9.2156862745%);
}
.wp-core-ui .button-group > .button.active {
border-color: #04a4cc;
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use "sass:color";

$scheme-name: "light";
$base-color: #e5e5e5;
$icon-color: #999;
Expand All @@ -19,7 +21,7 @@ $menu-collapse-text: #777;
$menu-collapse-focus-icon: #555;

$dashboard-accent-1: $highlight-color;
$dashboard-accent-2: desaturate( lighten( $highlight-color, 7% ), 15% );
$dashboard-accent-2: color.adjust(color.adjust($highlight-color, $lightness: 7%), $saturation: -15%);
$dashboard-icon-background: $text-color;

@import "../_admin.scss";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use "sass:color";

$scheme-name: "midnight";
$base-color: #363b3f;
$highlight-color: #e14d43;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
@use "sass:color";

$scheme-name: "modern";
$base-color: #1e1e1e;
$highlight-color: #3858e9;
$menu-submenu-focus-text: #33f078;
$notification-color: $highlight-color;

$link: $highlight-color;
$link-focus: darken($highlight-color, 10%);
$link-focus: color.adjust($highlight-color, $lightness: -10%);

$custom-welcome-panel: "false";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use "sass:color";

$scheme-name: "ocean";
$base-color: #738e96;
$icon-color: #f2fcff;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
@use "sass:color";

$scheme-name: "sunrise";
$base-color: #cf4944;
$highlight-color: #dd823b;
$notification-color: #ccaf0b;
$menu-submenu-focus-text: lighten( $highlight-color, 35% );
$menu-submenu-focus-text: color.adjust($highlight-color, $lightness: 35%);

@import "../_admin.scss";
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,14 @@
pointer-events: none;
}

#titlewrap .skiplink:focus {
clip: inherit;
clip-path: inherit;
left: 4px;
top: 4px;
width: auto;
}

input#link_description,
input#link_url {
width: 100%;
Expand Down Expand Up @@ -1039,6 +1047,14 @@ form#tags-filter {
white-space: normal;
line-height: 1.8;
}

#edit-slug-box {
padding: 0;
}

#titlewrap .skiplink:focus {
top: 5px;
}
}

@media only screen and (max-width: 1004px) {
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,14 @@
pointer-events: none;
}

#titlewrap .skiplink:focus {
clip: inherit;
clip-path: inherit;
right: 4px;
top: 4px;
width: auto;
}

input#link_description,
input#link_url {
width: 100%;
Expand Down Expand Up @@ -1038,6 +1046,14 @@ form#tags-filter {
white-space: normal;
line-height: 1.8;
}

#edit-slug-box {
padding: 0;
}

#titlewrap .skiplink:focus {
top: 5px;
}
}

@media only screen and (max-width: 1004px) {
Expand Down

Large diffs are not rendered by default.

Loading

0 comments on commit 8e4b1f1

Please sign in to comment.