Created
April 3, 2023 14:57
-
-
Save scheckley/f65d50613c6527118d3957c03d11079b to your computer and use it in GitHub Desktop.
vivaldi custom css for macos to move tab buttons to rhs, where they should be.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.tab .close { /* move close button to right and always show */ | |
display: inline !important; | |
order:1 !important; | |
} | |
.tab .tab-audio{ /* move audio button to left */ | |
order:-1 !important; | |
} | |
.tab .favicon{ /* always show favicon, on Mac it disappears when you mouseover */ | |
display: inline !important; | |
margin-left: 6px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment