From 4de50da77aaa10e16401c3d2c6320506148fea9f Mon Sep 17 00:00:00 2001 From: Mehdi El Oualy Date: Mon, 9 Sep 2024 17:18:35 +0100 Subject: [PATCH] Modernize dropdown menu addede a new style for the dropdown menu to remove the border and apply a border-radius using the variable --border-radius. --- weblate/static/styles/main.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/weblate/static/styles/main.css b/weblate/static/styles/main.css index aa37d8c810e9..d3f9d5d413ba 100644 --- a/weblate/static/styles/main.css +++ b/weblate/static/styles/main.css @@ -2100,3 +2100,8 @@ tbody.warning { .totp-qr svg path { fill: black !important; } + +.dropdown-menu { + border: none; + border-radius: var(--border-radius); +}