Skip to content

Commit

Permalink
Sakura scheme: Fix color issues on masterbar (#37806)
Browse files Browse the repository at this point in the history
  • Loading branch information
lupus2k authored Jun 12, 2024
1 parent d6e18b5 commit 4e52d8f
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: fixed

Color Schemes: Fix Sakura color issues on masterbar
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ $menu-current-icon: $menu-current-text;
$menu-current-background: $studio-blue-50; // Calypso --color-sidebar-menu-selected-background
$menu-submenu-text: $studio-pink-0; // Calypso --color-sidebar-submenu-text
$menu-submenu-background: $studio-pink-90; // Calypso --color-sidebar-submenu-background
$menu-submenu-background-alt: $studio-pink-70; // Calypso --color-sidebar-submenu-background-alt
$menu-submenu-focus-text: $studio-blue-20; // Calypso --color-sidebar-submenu-hover-text
$menu-submenu-current-text: $studio-pink-0; // Calypso --color-sidebar-submenu-selected-text

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
@import "variables";
@import "../admin";
@import "sidebar-notice";

#wpadminbar:not(.mobile) li:hover .ab-icon:before,
#wpadminbar:not(.mobile) li:hover .ab-item:before {
color: $menu-submenu-current-text;
}

#wpadminbar #wp-admin-bar-user-info .display-name {
color: $menu-submenu-text;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: other

Color Schemes: Fix Sakura color issues on masterbar
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ $menu-current-icon: $menu-current-text;
$menu-current-background: $studio-blue-50; // Calypso --color-sidebar-menu-selected-background
$menu-submenu-text: $studio-pink-0; // Calypso --color-sidebar-submenu-text
$menu-submenu-background: $studio-pink-90; // Calypso --color-sidebar-submenu-background
$menu-submenu-background-alt: $studio-pink-70; // Calypso --color-sidebar-submenu-background-alt
$menu-submenu-focus-text: $studio-blue-20; // Calypso --color-sidebar-submenu-hover-text
$menu-submenu-current-text: $studio-pink-0; // Calypso --color-sidebar-submenu-selected-text

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
@import "variables";
@import "../admin";
@import "sidebar-notice";

#wpadminbar:not(.mobile) li:hover .ab-icon:before,
#wpadminbar:not(.mobile) li:hover .ab-item:before {
color: $menu-submenu-current-text;
}

#wpadminbar #wp-admin-bar-user-info .display-name {
color: $menu-submenu-text;
}

0 comments on commit 4e52d8f

Please sign in to comment.