UI - ЛАУНЧЕР: ГЕОМЕТРИЯ АДМИН-МОДАЛОК
This commit is contained in:
parent
2129ffe336
commit
a3f2d2e6a0
|
|
@ -1827,6 +1827,10 @@ code {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.admin-panel-content__body:has(.service-content-modal-layer) {
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
|
||||||
.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));
|
||||||
}
|
}
|
||||||
|
|
@ -2717,12 +2721,12 @@ code {
|
||||||
}
|
}
|
||||||
|
|
||||||
.service-content-modal-layer {
|
.service-content-modal-layer {
|
||||||
position: fixed;
|
position: absolute;
|
||||||
z-index: 60;
|
z-index: 60;
|
||||||
inset: 0;
|
inset: var(--admin-panel-gap);
|
||||||
display: grid;
|
display: grid;
|
||||||
place-items: center;
|
place-items: stretch;
|
||||||
padding: 1.4rem;
|
padding: 0;
|
||||||
background: rgba(0, 0, 0, 0.38);
|
background: rgba(0, 0, 0, 0.38);
|
||||||
backdrop-filter: blur(12px);
|
backdrop-filter: blur(12px);
|
||||||
-webkit-backdrop-filter: blur(12px);
|
-webkit-backdrop-filter: blur(12px);
|
||||||
|
|
@ -2856,8 +2860,9 @@ code {
|
||||||
.service-content-modal {
|
.service-content-modal {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: grid;
|
display: grid;
|
||||||
width: min(58rem, calc(100vw - 2.8rem));
|
width: 100%;
|
||||||
max-height: min(44rem, calc(100vh - 2.8rem));
|
height: 100%;
|
||||||
|
max-height: none;
|
||||||
grid-template-rows: auto minmax(0, 1fr) auto;
|
grid-template-rows: auto minmax(0, 1fr) auto;
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
@ -3380,8 +3385,8 @@ code {
|
||||||
}
|
}
|
||||||
|
|
||||||
.task-access-modal {
|
.task-access-modal {
|
||||||
width: min(44rem, calc(100vw - 2rem));
|
width: 100%;
|
||||||
max-height: min(44rem, calc(100vh - 2.8rem));
|
max-height: none;
|
||||||
grid-template-rows: auto auto minmax(0, 1fr) auto;
|
grid-template-rows: auto auto minmax(0, 1fr) auto;
|
||||||
gap: 0.85rem;
|
gap: 0.85rem;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue