mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-25 05:28:05 +02:00
22 lines
506 B
CSS
22 lines
506 B
CSS
/* Add any CSS rules for Angular module "crmContactcats" */
|
|
crm-contact-category-settings ol {
|
|
padding: 0;
|
|
}
|
|
crm-contact-category-settings ol li {
|
|
display: flex;
|
|
padding: 0.5em 0;
|
|
align-items: flex-end;
|
|
gap: 1em;
|
|
}
|
|
crm-contact-category-settings li label {
|
|
display: block;
|
|
}
|
|
crm-contact-category-settings .name-input-wrapper {
|
|
flex: 0 1 29ch;
|
|
}
|
|
crm-contact-category-settings .hint {
|
|
display: none;
|
|
}
|
|
crm-contact-category-settings .name-input-wrapper:focus-within .hint {
|
|
display: block;
|
|
}
|