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