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 Jul 12, 2023
1 parent 0b19224 commit b3a8e55
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

1 comment on commit b3a8e55

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Flaky tests detected in b3a8e55.
Some tests passed with failed attempts. The failures may not be related to this commit but are still reported for visibility. See the documentation for more information.

🔍 Workflow run URL: https://github.com/WordPress/gutenberg/actions/runs/5530194979
📝 Reported issues:

Please sign in to comment.