From 49fe06ed69a73fc3d948244724f314e63ae3bc91 Mon Sep 17 00:00:00 2001 From: binary-husky Date: Fri, 15 Dec 2023 21:12:39 +0800 Subject: [PATCH] add light edge for audio btn --- themes/common.js | 1 + 1 file changed, 1 insertion(+) diff --git a/themes/common.js b/themes/common.js index 1e491fbe4..afa87141d 100644 --- a/themes/common.js +++ b/themes/common.js @@ -285,6 +285,7 @@ function audio_fn_init() { }); let parent_element = audio_component.parentElement; // 将buttonElement移动到audio_button的内部 audio_button.appendChild(audio_component); + buttonElement.style.cssText = 'border-color: #00ffe0;border-width: 2px; height: 25px;' parent_element.remove(); audio_component.style.cssText = 'width: 250px;right: 0px;display: inline-flex;flex-flow: row-reverse wrap;place-content: stretch space-between;align-items: center;background-color: #ffffff00;'; }