Fix advanced filter operator selector styling. (https://github.com/woocommerce/woocommerce-admin/pull/7005)
* Fix advanced filter operator selector styling. * Add changelog entries.
This commit is contained in:
parent
69dfdf733c
commit
419a7fc5b1
|
@ -1,6 +1,7 @@
|
||||||
# Unreleased
|
# Unreleased
|
||||||
|
|
||||||
- Fix style regression with the Chart header. #7002
|
- Fix style regression with the Chart header. #7002
|
||||||
|
- Fix styling of the advanced filter operator selection. #7005
|
||||||
- Remove the use of Dashicons and replace with @wordpress/icons or gridicons #7020
|
- Remove the use of Dashicons and replace with @wordpress/icons or gridicons #7020
|
||||||
- Add tree shaking support to this package. #7034
|
- Add tree shaking support to this package. #7034
|
||||||
|
|
||||||
|
|
|
@ -10,16 +10,25 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.components-select-control__input {
|
.components-select-control {
|
||||||
height: 38px;
|
.components-input-control__container {
|
||||||
padding: 0 0 0 $gap-smaller;
|
.components-select-control__input {
|
||||||
margin: 0;
|
height: 38px;
|
||||||
|
padding: 0 0 0 $gap-smaller;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.components-card__header {
|
.components-card__header {
|
||||||
.components-base-control__field {
|
.components-base-control__field {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
display: flex;
|
||||||
|
line-height: 38px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint( '<782px' ) {
|
@include breakpoint( '<782px' ) {
|
||||||
|
@ -29,12 +38,12 @@
|
||||||
@include breakpoint( '<400px' ) {
|
@include breakpoint( '<400px' ) {
|
||||||
margin: $gap-small 0;
|
margin: $gap-small 0;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.woocommerce-filters-advanced__title-select {
|
.woocommerce-filters-advanced__title-select {
|
||||||
width: 70px;
|
width: 70px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin: 0 $gap-smaller;
|
margin: 0 $gap-smaller;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.woocommerce-filters-advanced__list {
|
.woocommerce-filters-advanced__list {
|
||||||
|
|
|
@ -119,6 +119,7 @@ Release and roadmap notes are available on the [WooCommerce Developers Blog](htt
|
||||||
- Fix: Call existing filters for leaderboards in analytics. #6626
|
- Fix: Call existing filters for leaderboards in analytics. #6626
|
||||||
- Fix: Set target to blank for the external links #6999
|
- Fix: Set target to blank for the external links #6999
|
||||||
- Fix style regression with the Chart header. #7002
|
- Fix style regression with the Chart header. #7002
|
||||||
|
- Fix styling of the advanced filter operator selection. #7005
|
||||||
- Fix: Deprecated warnings from select control @wordpress/data-controls. #7007
|
- Fix: Deprecated warnings from select control @wordpress/data-controls. #7007
|
||||||
- Tweak: Only fetch remote payment gateway recommendations when opted in #6964
|
- Tweak: Only fetch remote payment gateway recommendations when opted in #6964
|
||||||
- Tweak: Setup checklist copy revert. #7015
|
- Tweak: Setup checklist copy revert. #7015
|
||||||
|
|
Loading…
Reference in New Issue