mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-26 14:17:19 +02:00
Main edit interface functinonal except save and execution order
This commit is contained in:
parent
4978eeb828
commit
b0983603e5
6 changed files with 346 additions and 72 deletions
|
@ -2,10 +2,44 @@
|
|||
crm-contact-category-settings ol {
|
||||
padding: 0;
|
||||
}
|
||||
crm-contact-category-settings ol li {
|
||||
crm-contact-category-settings li.deleted {
|
||||
opacity: 0.3;
|
||||
}
|
||||
/* @keyframes crm-contact-cats-move { */
|
||||
/* 0%, 90% {transform: none;} */
|
||||
/* 95% {transform: translateX(0.2em);} */
|
||||
/* 100% {transform: none;} */
|
||||
/* } */
|
||||
|
||||
crm-contact-category-settings .crm-contact-cats-move-target {
|
||||
transition: opacity 0.3s ease, transform 0.3s ease, display 0.001s allow-discrete, max-height 0.3s ease;
|
||||
transform-origin: top left;
|
||||
display: none;
|
||||
}
|
||||
crm-contact-category-settings .moving .crm-contact-cats-move-target {
|
||||
display: block;
|
||||
transform: none;
|
||||
opacity: 1;
|
||||
max-height: 5rem;
|
||||
@starting-style {
|
||||
transform: scaleY(0);
|
||||
opacity:0;
|
||||
max-height: 0;
|
||||
}
|
||||
}
|
||||
|
||||
crm-contact-category-settings li.being-moved .panel {
|
||||
opacity: 0.8;
|
||||
}
|
||||
crm-contact-category-settings .panel {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
crm-contact-category-settings .panel-body {
|
||||
display: flex;
|
||||
box-sizing: border-box;
|
||||
padding: 0.5em 0;
|
||||
align-items: flex-end;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 1em;
|
||||
}
|
||||
crm-contact-category-settings li label {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue