Fix attribute list styles (#40378)

* Fix attribute list style

* Add changelog

* Move changelog

* Fix attributes style
This commit is contained in:
Fernando Marichal 2023-09-26 16:08:57 -03:00 committed by GitHub
parent 58740c8ac7
commit 5fa98ace1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 2 deletions

View File

@ -0,0 +1,4 @@
Significance: minor
Type: fix
Fix styles for attribute list

View File

@ -7,7 +7,7 @@
background: none;
border: none;
border-bottom: 1px solid $gray-200;
padding-left: 0;
padding: 0;
grid-template-columns: 26% auto 90px;
}
@ -15,4 +15,9 @@
display: none;
}
.components-button.has-icon {
svg {
fill: $gray-700;
}
}
}

View File

@ -10,11 +10,16 @@
.woocommerce-list-item {
background: none;
border: none;
padding-left: 0;
padding: 0;
grid-template-columns: 26% auto 90px;
}
.woocommerce-sortable__handle {
display: none;
}
.components-button.has-icon {
svg {
fill: $gray-700;
}
}
}