| 1 |
body.user-edit-php #your-profile .wp-editor-wrap { |
| 2 |
width: 500px !important; |
| 3 |
} |
| 4 |
|
| 5 |
body.user-edit-php #your-profile .custom_field_select, |
| 6 |
body.user-edit-php #your-profile .select2-container, |
| 7 |
body.user-edit-php #your-profile .custom_field_multiple_select { |
| 8 |
min-width: 25em; |
| 9 |
} |
| 10 |
|
| 11 |
/*-------------------------------------------------------------- |
| 12 |
International Telephone Input |
| 13 |
--------------------------------------------------------------*/ |
| 14 |
body.user-edit-php #your-profile .iti .iti__search-input { |
| 15 |
box-sizing: border-box !important; |
| 16 |
width: 100% !important; |
| 17 |
padding-left: 30px !important; |
| 18 |
padding-right: 28px !important; |
| 19 |
} |
| 20 |
|
| 21 |
/* Increase horizontal spacing used by the intl-tel-input internals. */ |
| 22 |
body.user-edit-php #your-profile .iti { |
| 23 |
--iti-spacer-horizontal: 12px; |
| 24 |
} |
| 25 |
|
| 26 |
/* Keep dropdown corners clean and clip item highlight backgrounds. */ |
| 27 |
body.user-edit-php #your-profile .iti--inline-dropdown .iti__dropdown-content { |
| 28 |
border-radius: 6px; |
| 29 |
overflow: hidden; |
| 30 |
} |
| 31 |
|
| 32 |
/* Add vertical breathing room for the list container. */ |
| 33 |
body.user-edit-php #your-profile .iti .iti__country-list { |
| 34 |
padding: 4px 0; |
| 35 |
margin: 0; |
| 36 |
} |
| 37 |
|
| 38 |
/* Add balanced horizontal padding for each country option row. */ |
| 39 |
body.user-edit-php #your-profile .iti .iti__country { |
| 40 |
padding: 8px 12px; |
| 41 |
} |
| 42 |
|
| 43 |
/* Ensure visible gap between flag and country label/dial code. */ |
| 44 |
body.user-edit-php #your-profile .iti .iti__country-list .iti__flag { |
| 45 |
margin-right: 10px; |
| 46 |
} |
| 47 |
|
| 48 |
/* Mirror flag spacing when page direction is right-to-left. */ |
| 49 |
[dir="rtl"] body.user-edit-php #your-profile .iti .iti__country-list .iti__flag { |
| 50 |
margin-right: 0; |
| 51 |
margin-left: 10px; |
| 52 |
} |
| 53 |
|
| 54 |
body.user-edit-php #your-profile td .iti { |
| 55 |
min-width: 25em; |
| 56 |
max-width: 100%; |
| 57 |
} |
| 58 |
|
| 59 |
body.user-edit-php #your-profile td .iti + .wppb-iti-error { |
| 60 |
display: block; |
| 61 |
margin-top: 6px; |
| 62 |
margin-left: 0; |
| 63 |
color: #c0392b !important; |
| 64 |
font-size: 13px !important; |
| 65 |
} |
| 66 |
|