Skip to content

Commit 6b9e325

Browse files
p4gsclaudehappy-otter
committed
Fix cell transparency on tap with fully opaque backgrounds
- Replace all rgba() row colors with opaque hex values - Set explicit background on every tbody td - Remove background transition that caused flash on tap Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
1 parent 520bc3c commit 6b9e325

File tree

1 file changed

+6
-6
lines changed
  • docs/projects/grcengineering-cheat-sheet

1 file changed

+6
-6
lines changed

docs/projects/grcengineering-cheat-sheet/index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
--bg-card: #ffffff;
2323
--bg-header: var(--orange);
2424
--bg-row-header: #f8f9fa;
25-
--bg-row-alt: rgba(27, 149, 193, 0.04);
26-
--bg-row-hover: rgba(255, 168, 79, 0.08);
25+
--bg-row-alt: #f2f7f9;
26+
--bg-row-hover: #fff5eb;
2727
--text: #1a1a2e;
2828
--text-dim: #555;
2929
--text-header: #000;
@@ -45,8 +45,8 @@
4545
--bg-card: #151530;
4646
--bg-header: #1a1a3e;
4747
--bg-row-header: #1a1a3e;
48-
--bg-row-alt: rgba(27, 149, 193, 0.06);
49-
--bg-row-hover: rgba(255, 168, 79, 0.08);
48+
--bg-row-alt: #151a33;
49+
--bg-row-hover: #1f1a2e;
5050
--text: #c8c8e0;
5151
--text-dim: #8888a8;
5252
--text-header: #f0f0ff;
@@ -242,9 +242,9 @@
242242
padding: 16px 20px;
243243
vertical-align: top;
244244
border-bottom: 1px solid var(--border);
245-
transition: background 0.2s;
245+
background: var(--bg-card);
246246
}
247-
tbody tr:nth-child(odd) {
247+
tbody tr:nth-child(odd) td {
248248
background: var(--bg-row-alt);
249249
}
250250
tbody tr:hover td {

0 commit comments

Comments
 (0)