Skip to content

Instantly share code, notes, and snippets.

@scheckley
Created April 3, 2023 14:57
Show Gist options
  • Save scheckley/f65d50613c6527118d3957c03d11079b to your computer and use it in GitHub Desktop.
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.
.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