From bf728ea11b4c417eb425bf7928cde097b213dd3e Mon Sep 17 00:00:00 2001 From: gitadmin Date: Sun, 28 Sep 2025 20:30:24 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B2=D1=82=D0=BE=D1=80=D0=B0=D1=8F=20=D0=BF?= =?UTF-8?q?=D0=BE=D0=BF=D1=8B=D1=82=D0=BA=D0=B0=20=D0=BA=D0=BE=D1=80=D1=80?= =?UTF-8?q?=D0=B5=D0=BA=D1=86=D0=B8=D0=B8=20=D0=B2=D1=8B=D1=81=D0=BE=D1=82?= =?UTF-8?q?=D1=8B=20=D0=B1=D0=BB=D0=BE=D0=BA=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/index.html | 39 +++++++++++++++++++++------------------ 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/templates/index.html b/templates/index.html index 8cd3e68..ccbf798 100644 --- a/templates/index.html +++ b/templates/index.html @@ -129,35 +129,38 @@ } .card.h-100 .card-body { - flex: 1; - display: flex; - flex-direction: column; - padding: 0; - overflow: hidden; - min-height: 0; + flex: 0 0 auto; + display: block; + padding: 1rem; + overflow: visible; + min-height: auto; } /* Скроллируемая область детализации */ .scrollable-details { - flex: 1; - overflow: hidden !important; - padding: 0 !important; + flex: 0 0 auto; + overflow: visible !important; + padding: 1rem !important; margin: 0 !important; position: relative; - min-height: 0; + min-height: auto; + height: auto; + max-height: none; } - /* Ограничиваем высоту контента внутри детализации */ + /* Контент внутри детализации */ .scrollable-details > div { - position: absolute !important; - top: 0 !important; - left: 0 !important; - right: 0 !important; - bottom: 0 !important; - overflow-y: auto !important; + position: relative !important; + top: auto !important; + left: auto !important; + right: auto !important; + bottom: auto !important; + overflow: visible !important; box-sizing: border-box; - padding: 15px; + width: 100%; + height: auto; } + .navbar-nav .dropdown-menu { min-width: 200px; }