From cd97a3a80e40d6321d949b6142c27e0fece00e4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dalibor=20Markovi=C4=87?= Date: Fri, 26 Jun 2026 01:46:18 +0200 Subject: [PATCH] =?UTF-8?q?BUGFIX:=20dropdown=20=E2=80=94=20left:-9999px?= =?UTF-8?q?=20umesto=20display:none=20(neuni=C5=A1tivo)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/templates/stranice/servis_detalji.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/templates/stranice/servis_detalji.html b/web/templates/stranice/servis_detalji.html index 563ac2b..f297d53 100644 --- a/web/templates/stranice/servis_detalji.html +++ b/web/templates/stranice/servis_detalji.html @@ -25,11 +25,11 @@ .cust-sel-chevron { font-size: 10px; color: var(--tekst-sporedni); flex-shrink: 0; transition: transform 0.15s; } .cust-sel.otvoren .cust-sel-chevron { transform: rotate(180deg); } .cust-sel-lista { - display: none; position: absolute; top: calc(100% + 3px); left: 0; right: 0; z-index: 500; + position: absolute; top: calc(100% + 3px); left: -9999px; right: auto; z-index: 500; background: var(--kartica); border: 0.5px solid var(--ivica); border-radius: 10px; max-height: 260px; overflow-y: auto; box-shadow: 0 8px 30px rgba(0,0,0,0.4); } - .cust-sel.otvoren .cust-sel-lista { display: block; } + .cust-sel.otvoren .cust-sel-lista { left: 0; right: 0; } .cso { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 12px; cursor: pointer; border-bottom: 0.5px solid var(--ivica); font-size: 13px;