fix: add non-color indicators for active tab and search highlights

This commit is contained in:
Your Name
2026-02-19 21:37:51 +02:00
parent 88964ec842
commit f2ad745c28

View File

@@ -501,6 +501,7 @@ html, body, #root {
padding: 0 12px;
background: transparent;
border: none;
border-bottom: 2px solid transparent;
border-radius: var(--radius-md);
color: var(--color-text-secondary);
cursor: pointer;
@@ -518,6 +519,7 @@ html, body, #root {
.tab.active {
background-color: var(--color-bg-elevated);
color: var(--color-text-primary);
border-bottom: 2px solid var(--color-accent);
}
.tab-title {
@@ -1627,6 +1629,9 @@ span.search-highlight {
color: inherit !important;
border-radius: 2px;
padding: 1px 0;
text-decoration: underline;
text-decoration-color: var(--color-md-mark-text);
text-underline-offset: 2px;
transition: background-color 0.15s ease, outline-color 0.15s ease;
}