Skip to content

Commit

Permalink
Fix "Manage all patterns" link appearance (#52532)
Browse files Browse the repository at this point in the history
* Fix "Manage all patterns" link

* Update focus style
  • Loading branch information
jameskoster authored and tellthemachines committed Jul 13, 2023
1 parent ae826fd commit 00e685b
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
&[aria-current] {
color: $gray-200;
background: $gray-800;

.edit-site-sidebar-navigation-item__drilldown-indicator {
fill: $gray-200;
}
}

&[aria-current] {
Expand All @@ -19,7 +23,7 @@
}

.edit-site-sidebar-navigation-item__drilldown-indicator {
fill: $gray-700;
fill: $gray-600;
}

&:is(a) {
Expand All @@ -31,6 +35,11 @@
box-shadow: none;
outline: none;
}

&:focus-visible {
box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
outline: 2px solid transparent;
}
}

&.with-suffix {
Expand Down

0 comments on commit 00e685b

Please sign in to comment.