Rather than adding border, add color to border of search box (#40242)
This commit is contained in:
commit
8685fd211e
|
@ -3,6 +3,7 @@
|
|||
.woocommerce-marketplace__search {
|
||||
grid-area: mktpl-search;
|
||||
background: $gutenberg-gray-100;
|
||||
border: 1.5px solid transparent;
|
||||
border-radius: 2px;
|
||||
display: flex;
|
||||
height: 40px;
|
||||
|
@ -15,7 +16,7 @@
|
|||
|
||||
&:focus-within {
|
||||
background: #fff;
|
||||
border: 1.5px solid var(--wp-admin-theme-color, #3858e9);
|
||||
border-color: var(--wp-admin-theme-color, #3858e9);
|
||||
}
|
||||
|
||||
@media (width <= $breakpoint-medium) {
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
Comment: Prevented a 1.5px cosmetic shift of contents in the Extension Search box when focussing/unfocussing.
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue