mirror of
https://github.com/10h30/woo-viet.git
synced 2026-06-05 15:09:49 +09:00
cf7bf361c1
Issue #17 - Arrange the address fields to the Vietnam standard: Country - Province - District - Address
48 lines
558 B
CSS
48 lines
558 B
CSS
.woocommerce-billing-fields__field-wrapper.active {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
#billing_first_name_field {
|
|
order: 1;
|
|
}
|
|
|
|
#billing_last_name_field {
|
|
order: 2;
|
|
}
|
|
|
|
#billing_company_field {
|
|
order: 3;
|
|
}
|
|
|
|
#billing_country_field {
|
|
order: 4;
|
|
}
|
|
|
|
#billing_state_field {
|
|
order: 5;
|
|
}
|
|
|
|
#billing_city_field {
|
|
order: 6;
|
|
}
|
|
|
|
#billing_address_1_field {
|
|
order: 7;
|
|
}
|
|
|
|
#billing_address_2_field {
|
|
order: 8;
|
|
}
|
|
|
|
#billing_postcode_field {
|
|
order: 9;
|
|
}
|
|
|
|
#billing_phone_field {
|
|
order: 10;
|
|
}
|
|
|
|
#billing_email_field {
|
|
order: 11;
|
|
} |