From ce20c879de95f8e60d72af4093c8e2ecb5d048fe Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Fri, 07 Mar 2025 10:31:23 +0800 Subject: [PATCH] css: Add outline to select:active --- static/style.css | 3 +++ diff --git a/static/style.css b/static/style.css index 0f53c86e36c4c3d825782b2874661cf3d60e65c5..0c902d54ea0e70e6cdee93277d8cde63f1e1a9d9 100644 --- a/static/style.css +++ b/static/style.css @@ -295,6 +295,9 @@ left: 0; right: 0; bottom: 0; } +select:active { + outline: 1.5px var(--primary-color) solid; +} /* Button styles */ -- 2.48.1