From 68deff86b194f73f3b70d3809818216af2773d12 Mon Sep 17 00:00:00 2001 From: MKStoler1024 <158786854+MKStoler1024@users.noreply.github.com> Date: Tue, 22 Apr 2025 15:17:43 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20md3=E4=BA=AE=E8=89=B2=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E4=B8=A2=E5=A4=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- exam/Styles/md3/light.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/exam/Styles/md3/light.css b/exam/Styles/md3/light.css index b6c4d99..29e4626 100644 --- a/exam/Styles/md3/light.css +++ b/exam/Styles/md3/light.css @@ -327,6 +327,34 @@ tr:hover { font-size: 18px; } +#save-settings-btn, #close-settings-btn { + padding: 12px 24px; + border-radius: 20px; + font-size: 16px; + font-weight: 500; + border: none; + cursor: pointer; + transition: all 0.2s ease; + display: flex; + align-items: center; + gap: 8px; +} + +#save-settings-btn { + background-color: #6750A4; + color: #FFFFFF; +} + +#close-settings-btn { + background-color: #E8DEF8; + color: #1C1B1F; +} + +#save-settings-btn:hover, #close-settings-btn:hover { + transform: translateY(-1px); + box-shadow: 0 2px 6px rgba(0,0,0,0.2); +} + .error-container { position: fixed; bottom: 24px;