UI - ЛАУНЧЕР: ЕДИНЫЙ SURFACE АДМИН-МОДАЛОК

This commit is contained in:
DCCONSTRUCTIONS 2026-05-08 20:07:49 +03:00
parent a3f2d2e6a0
commit 1d0e4a2f4e
1 changed files with 26 additions and 10 deletions

View File

@ -1831,6 +1831,11 @@ code {
overflow: visible;
}
.admin-panel-content:has(.service-content-modal-layer) > .admin-header {
opacity: 0;
pointer-events: none;
}
.admin-panel-content .admin-section-grid {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
@ -2727,9 +2732,14 @@ code {
display: grid;
place-items: stretch;
padding: 0;
background: rgba(0, 0, 0, 0.38);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
overflow: hidden;
border-radius: var(--launcher-radius-modal);
background:
linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
rgba(10, 10, 13, 0.9);
box-shadow: 0 34px 120px rgba(0, 0, 0, 0.62);
backdrop-filter: blur(34px) saturate(1.12);
-webkit-backdrop-filter: blur(34px) saturate(1.12);
}
.nodedc-delete-modal-layer {
@ -2860,20 +2870,21 @@ code {
.service-content-modal {
position: relative;
display: grid;
min-width: 0;
min-height: 0;
width: 100%;
height: 100%;
max-height: none;
grid-template-rows: auto minmax(0, 1fr) auto;
gap: 1rem;
box-sizing: border-box;
overflow: hidden;
padding: 1rem;
border-radius: var(--launcher-radius-modal);
background:
linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
rgba(10, 10, 13, 0.9);
box-shadow: 0 34px 120px rgba(0, 0, 0, 0.62);
backdrop-filter: blur(34px) saturate(1.12);
-webkit-backdrop-filter: blur(34px) saturate(1.12);
border-radius: inherit;
background: transparent;
box-shadow: none;
backdrop-filter: none;
-webkit-backdrop-filter: none;
}
.client-editor-modal {
@ -2887,6 +2898,9 @@ code {
align-items: center;
justify-content: space-between;
gap: 1rem;
width: 100%;
min-width: 0;
box-sizing: border-box;
}
.service-content-modal__foot-actions {
@ -2908,6 +2922,8 @@ code {
.service-content-modal__grid {
display: grid;
width: 100%;
min-width: 0;
min-height: 0;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.75rem;