mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-14 20:23:53 +02:00
10 lines
268 B
CSS
10 lines
268 B
CSS
|
|
/**
|
|
* Zen Mod: Tab rename fix
|
|
* Better visibility of tab renaming by inverting the selected text colors.
|
|
* Pontus Sundén <hi@pontus.cc>
|
|
*/
|
|
#tab-label-input::selection {
|
|
background: var(--input-color) !important;
|
|
color: var(--input-bgcolor) !important;
|
|
}
|