Skip to content

Commit

Permalink
Add border to filter chips
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskoster committed Aug 30, 2024
1 parent a3d1c07 commit 0507ff7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@

.dataviews-filters__summary-chip {
border-radius: $grid-unit-20;
border: $border-width solid transparent;
cursor: pointer;
padding: $grid-unit-05 $grid-unit-15;
min-height: $grid-unit-40;
background: $gray-100;
border: 1px solid $gray-200;
color: $gray-800;
position: relative;
display: flex;
Expand All @@ -72,6 +72,7 @@
&.has-values {
color: var(--wp-admin-theme-color);
background: rgba(var(--wp-admin-theme-color--rgb), 0.04);
border: 1px solid rgba(var(--wp-admin-theme-color--rgb), 0.12);

&:hover,
&[aria-expanded="true"] {
Expand Down

0 comments on commit 0507ff7

Please sign in to comment.