-
Is it possible to change the color of text for unloaded tabs? It's a muted gray and I would like something lighter. In the Styles editor I see Active and Normal (i.e. loaded) tabs, but not for unloaded tabs. |
Beta Was this translation helpful? Give feedback.
Answered by
mbnuqw
Apr 6, 2024
Replies: 1 comment
-
Use this custom style: .Tab {
--tabs-discarded-favicon-opacity: .5;
--tabs-discarded-title-opacity: .7;
}
#root .Tab[data-discarded="true"] > .body > .fav {
opacity: var(--tabs-discarded-favicon-opacity);
}
#root .Tab[data-discarded="true"] > .body > .t-box,
#root .Tab[data-discarded="true"] > .body > .ctx {
opacity: var(--tabs-discarded-title-opacity);
} Also, these vars were added in #1553, so they already available in v5.2.0.5 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
rieje
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use this custom style:
Also, these vars were added in #1553, so they already available in v5.2.0.5