Merge pull request #24832 from woocommerce/fix/24731
Fix CSS for WP 5.3
This commit is contained in:
commit
aabf38d831
|
@ -578,6 +578,29 @@
|
|||
margin: 10px;
|
||||
}
|
||||
|
||||
#variable_product_options {
|
||||
.form-row select {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.toolbar-top {
|
||||
|
||||
.button {
|
||||
margin: 1px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#product_attributes {
|
||||
|
||||
.toolbar-top {
|
||||
|
||||
.button {
|
||||
margin: 1px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.clear {
|
||||
clear: both;
|
||||
}
|
||||
|
@ -1074,6 +1097,10 @@ ul.wc_coupon_list_block {
|
|||
|
||||
.order_data_column_container {
|
||||
clear: both;
|
||||
|
||||
p._billing_email_field {
|
||||
margin-top: 13px;
|
||||
}
|
||||
}
|
||||
|
||||
.order_data_column {
|
||||
|
@ -1116,6 +1143,7 @@ ul.wc_coupon_list_block {
|
|||
|
||||
select {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.select2-container {
|
||||
|
@ -1177,6 +1205,17 @@ ul.wc_coupon_list_block {
|
|||
display: none;
|
||||
zoom: 1;
|
||||
padding-right: 1px;
|
||||
|
||||
.select2-container {
|
||||
|
||||
.select2-selection--single {
|
||||
height: 32px;
|
||||
|
||||
.select2-selection__rendered {
|
||||
line-height: 32px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.wc-customer-user,
|
||||
|
@ -1984,6 +2023,10 @@ ul.wc_coupon_list_block {
|
|||
border-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
margin: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
#poststuff #woocommerce-order-notes .inside {
|
||||
|
@ -1993,6 +2036,11 @@ ul.wc_coupon_list_block {
|
|||
ul.order_notes li {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
button {
|
||||
margin: 1px;
|
||||
vertical-align: top;
|
||||
}
|
||||
}
|
||||
|
||||
#woocommerce_customers {
|
||||
|
@ -2116,6 +2164,21 @@ ul.wc_coupon_list_block {
|
|||
display: none;
|
||||
}
|
||||
|
||||
.tablenav {
|
||||
|
||||
.select2-selection--single {
|
||||
height: 32px;
|
||||
|
||||
.select2-selection__rendered {
|
||||
line-height: 29px;
|
||||
}
|
||||
|
||||
.select2-selection__arrow {
|
||||
height: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.wp-list-table {
|
||||
margin-top: 1em;
|
||||
|
||||
|
@ -3868,7 +3931,6 @@ img.help_tip {
|
|||
width: 400px;
|
||||
margin: 0;
|
||||
box-sizing: border-box;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
@ -5199,8 +5261,7 @@ img.help_tip {
|
|||
}
|
||||
|
||||
select {
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
&.dimensions_field {
|
||||
|
@ -6480,16 +6541,16 @@ table.bar_chart {
|
|||
}
|
||||
|
||||
.select2-selection--single {
|
||||
height: 32px;
|
||||
height: 40px;
|
||||
|
||||
.select2-selection__rendered {
|
||||
line-height: 32px;
|
||||
line-height: 40px;
|
||||
padding-right: 24px;
|
||||
}
|
||||
|
||||
.select2-selection__arrow {
|
||||
right: 3px;
|
||||
height: 30px;
|
||||
height: 36px;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -6537,7 +6598,6 @@ table.bar_chart {
|
|||
|
||||
select,
|
||||
input {
|
||||
line-height: 1;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
|
|
|
@ -976,6 +976,7 @@ table.variations {
|
|||
#ship-to-different-address {
|
||||
font-size: 1em;
|
||||
display: inline-block;
|
||||
margin: 1.42em 0;
|
||||
|
||||
label {
|
||||
font-weight: 300;
|
||||
|
|
|
@ -1146,7 +1146,7 @@ h3.jetpack-reasons {
|
|||
border-color: #ddd;
|
||||
border-radius: 4px;
|
||||
height: 30px;
|
||||
width: calc(100% - 8px - 8px - 2px); // account for padding, border to align with other elements
|
||||
width: 100%;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-size: 16px;
|
||||
|
@ -1371,7 +1371,6 @@ p.jetpack-terms {
|
|||
margin-top: 5px;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
width: 1.5em;
|
||||
}
|
||||
|
||||
.stripe_create_account,
|
||||
|
|
Loading…
Reference in New Issue