From fb6fffae3506b16a11d6c695934e96a3d02006f5 Mon Sep 17 00:00:00 2001 From: seonghobae <8172694+seonghobae@users.noreply.github.com> Date: Mon, 22 Jun 2026 13:54:56 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=8E=A8=20Palette:=20[UX=20improvement?= =?UTF-8?q?]=20=EC=96=B8=EC=96=B4=20=EC=A0=84=ED=99=98=20=EB=B2=84?= =?UTF-8?q?=ED=8A=BC=20=EC=A0=91=EA=B7=BC=EC=84=B1=20=EB=B0=8F=20=ED=98=B8?= =?UTF-8?q?=EB=B2=84=20=EC=8A=A4=ED=83=80=EC=9D=BC=20=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit πŸ’‘ What: μ–Έμ–΄ μ „ν™˜ λ²„νŠΌμ— `aria-label` μΆ”κ°€ 및 λ²„νŠΌ μš”μ†Œλ“€μ— `hover` μ‹œ `opacity` λ³€ν™” νŠΈλžœμ§€μ…˜ μΆ”κ°€ 🎯 Why: 슀크린 리더 μ‚¬μš©μžκ°€ μΆ•μ•½μ–΄(KO, EN) λŒ€μ‹  λͺ…ν™•ν•œ μ–Έμ–΄λͺ…을 μΈμ§€ν•˜κ²Œ ν•˜κ³ , 일반 μ‚¬μš©μžκ°€ μΈν„°λž™ν‹°λΈŒ μš”μ†Œμ— λŒ€ν•œ μ‹œκ°μ  ν”Όλ“œλ°±μ„ 받을 수 μžˆλ„λ‘ κ°œμ„  πŸ“Έ Before/After: λ²„νŠΌ ν˜Έλ²„ μ‹œ opacityκ°€ 0.8둜 λΆ€λ“œλŸ½κ²Œ 변경됨 β™Ώ Accessibility: `aria-label`을 ν†΅ν•œ 슀크린 리더 μŒμ„± ν”Όλ“œλ°± μ΅œμ ν™” --- commit_message.txt | 6 ++++++ index.html | 4 ++-- styles.css | 10 ++++++++++ 3 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 commit_message.txt diff --git a/commit_message.txt b/commit_message.txt new file mode 100644 index 0000000..3f220da --- /dev/null +++ b/commit_message.txt @@ -0,0 +1,6 @@ +🎨 Palette: [UX improvement] μ–Έμ–΄ μ „ν™˜ λ²„νŠΌ μ ‘κ·Όμ„± 및 ν˜Έλ²„ μŠ€νƒ€μΌ κ°œμ„  + +πŸ’‘ What: μ–Έμ–΄ μ „ν™˜ λ²„νŠΌμ— `aria-label` μΆ”κ°€ 및 λ²„νŠΌ μš”μ†Œλ“€μ— `hover` μ‹œ `opacity` λ³€ν™” νŠΈλžœμ§€μ…˜ μΆ”κ°€ +🎯 Why: 슀크린 리더 μ‚¬μš©μžκ°€ μΆ•μ•½μ–΄(KO, EN) λŒ€μ‹  λͺ…ν™•ν•œ μ–Έμ–΄λͺ…을 μΈμ§€ν•˜κ²Œ ν•˜κ³ , 일반 μ‚¬μš©μžκ°€ μΈν„°λž™ν‹°λΈŒ μš”μ†Œμ— λŒ€ν•œ μ‹œκ°μ  ν”Όλ“œλ°±μ„ 받을 수 μžˆλ„λ‘ κ°œμ„  +πŸ“Έ Before/After: λ²„νŠΌ ν˜Έλ²„ μ‹œ opacityκ°€ 0.8둜 λΆ€λ“œλŸ½κ²Œ 변경됨 +β™Ώ Accessibility: `aria-label`을 ν†΅ν•œ 슀크린 리더 μŒμ„± ν”Όλ“œλ°± μ΅œμ ν™” diff --git a/index.html b/index.html index dbb0157..2c465b2 100644 --- a/index.html +++ b/index.html @@ -43,8 +43,8 @@ GitHub
- - + +
diff --git a/styles.css b/styles.css index dfc509c..6a583f0 100644 --- a/styles.css +++ b/styles.css @@ -105,6 +105,11 @@ a { font-size: 13px; font-weight: 850; cursor: pointer; + transition: opacity 0.2s; +} + +.language-switch button:hover { + opacity: 0.8; } .language-switch button[aria-pressed="true"] { @@ -210,6 +215,11 @@ h1 { text-decoration: none; font-size: 15px; font-weight: 800; + transition: opacity 0.2s; +} + +.button:hover { + opacity: 0.8; } .button.primary { From 2217393983cae2b06ec972cf09047a97ba1c2990 Mon Sep 17 00:00:00 2001 From: Seongho Bae Date: Mon, 29 Jun 2026 01:49:07 +0900 Subject: [PATCH 2/2] Improve language switch accessibility state --- index.html | 4 ++-- styles.css | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 2c465b2..d2f1e2f 100644 --- a/index.html +++ b/index.html @@ -43,8 +43,8 @@ GitHub
- - + +
diff --git a/styles.css b/styles.css index 6a583f0..93dede1 100644 --- a/styles.css +++ b/styles.css @@ -108,7 +108,7 @@ a { transition: opacity 0.2s; } -.language-switch button:hover { +.language-switch button:not([aria-pressed="true"]):hover { opacity: 0.8; }