aboutsummaryrefslogtreecommitdiffstats
path: root/web/dist/v3/themes/codex.css
diff options
context:
space:
mode:
authorClaude <noreply@anthropic.com>2026-02-18 22:47:00 +0000
committerClaude <noreply@anthropic.com>2026-02-18 22:47:00 +0000
commitb78090371ddc394bf766ba0382568d0c3c6cfd89 (patch)
tree8027d4f59b1da9e94d34b8217698afcced4aeb8a /web/dist/v3/themes/codex.css
parent1362f00d39e90aef8a8338887222541a5a992178 (diff)
downloadneko-b78090371ddc394bf766ba0382568d0c3c6cfd89.tar.gz
neko-b78090371ddc394bf766ba0382568d0c3c6cfd89.tar.bz2
neko-b78090371ddc394bf766ba0382568d0c3c6cfd89.zip
Rebuild dist assets to match source changes
https://claude.ai/code/session_0187FXrbScDSWfbNEk9SfJaj
Diffstat (limited to 'web/dist/v3/themes/codex.css')
-rw-r--r--web/dist/v3/themes/codex.css11
1 files changed, 7 insertions, 4 deletions
diff --git a/web/dist/v3/themes/codex.css b/web/dist/v3/themes/codex.css
index ece9e2d..50942e6 100644
--- a/web/dist/v3/themes/codex.css
+++ b/web/dist/v3/themes/codex.css
@@ -49,8 +49,11 @@ body {
background-color: var(--bg-color);
color: var(--text-color);
-webkit-font-smoothing: antialiased;
- text-rendering: optimizeLegibility;
- font-feature-settings: 'liga' 1, 'kern' 1, 'onum' 1;
+ /* text-rendering: optimizeLegibility triggers expensive kerning/ligature
+ computation on all text. On mobile with long feed content this causes
+ significant layout slowdowns during scroll. The default 'auto' lets
+ the browser optimize per-element. font-feature-settings similarly
+ forces the shaper to run on every glyph. Removed for performance. */
}
/* ---- Sidebar: Table of Contents ---- */
@@ -236,8 +239,8 @@ body {
font-size: 1rem;
line-height: 1.75;
color: var(--text-color);
- hyphens: auto;
- -webkit-hyphens: auto;
+ /* hyphens: auto removed -- requires dictionary lookups during layout for
+ every line break, expensive with long feed content during scroll. */
}
.item-description a {