UI - МЕЖПРОЕКТНАЯ КОММУНИКАЦИЯ: горизонтальное меню карточек без изменения сетки канбана

This commit is contained in:
DCCONSTRUCTIONS
2026-04-29 16:42:52 +03:00
parent 4dbb7b500c
commit 5f9d9c418e
4 changed files with 94 additions and 17 deletions
+31
View File
@@ -347,6 +347,37 @@
0 6px 18px rgba(0, 0, 0, 0.2);
}
.nodedc-tall-action-menu > div {
max-height: calc(100vh - 24px) !important;
}
.nodedc-work-item-action-menu {
width: min(calc(100vw - 24px), 46rem);
}
.nodedc-work-item-action-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 0.5rem;
align-items: start;
}
.nodedc-work-item-action-section {
min-width: 0;
}
@media (max-width: 760px) {
.nodedc-work-item-action-menu {
width: min(calc(100vw - 24px), 18rem);
}
.nodedc-work-item-action-grid {
grid-template-columns: 1fr;
max-height: calc(100vh - 24px);
overflow-y: auto;
}
}
.nodedc-bottom-dock {
background:
linear-gradient(180deg, rgba(255, 255, 255, 0.024) 0%, rgba(255, 255, 255, 0.008) 100%), rgba(7, 7, 10, 0.72) !important;