From 3664acde0f75086f8b954573ecd472d34bdb2372 Mon Sep 17 00:00:00 2001 From: Millicool Date: Thu, 8 Jan 2026 19:19:19 +0100 Subject: [PATCH] Add border to dropdown content --- ui.R | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ui.R b/ui.R index c2b609f..e3c17f1 100644 --- a/ui.R +++ b/ui.R @@ -51,6 +51,14 @@ ui <- function() { choices = c("Bezirke", "Stadtteile"), selected = "Bezirke" ), + tags$head( + tags$style(HTML(" + .selectize-dropdown-content .option { + border-bottom: 1px solid #dee2e6; /* Die Trennlinie */ + padding: 8px 10px; /* Abstand zwischen Text und Linie */ + } + ")) + ), selectizeInput( inputId = "search", label = tags$span(icon("search"),"Suche"),