mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2026-07-16 16:42:00 -04:00
49 lines
1.1 KiB
CSS
Executable File
49 lines
1.1 KiB
CSS
Executable File
/* Startup background colour */
|
|
body {
|
|
background-color: #26272a !important;
|
|
}
|
|
|
|
/* Hide synced tab button */
|
|
.button-toolbar.synced-tabs-button {
|
|
display: none;
|
|
}
|
|
|
|
/* Highlight expanded bookmark folder */
|
|
.panel-bookmarks .tree-item[data-expanded] {
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Vivaldi logo old style */
|
|
.vivaldi-v {opacity: 1 !important;}
|
|
.vivaldi-v svg{background: radial-gradient(white, white 50%, transparent 50%, transparent); fill: #383838;}
|
|
|
|
/* Hide trash can when empty */
|
|
/* No longer works */
|
|
.toggle-trash > button:disabled {
|
|
display: none;
|
|
}
|
|
|
|
/* Scrollable web panels */
|
|
#panels-container #switch {
|
|
overflow: scroll;
|
|
}
|
|
#panels-container #switch::-webkit-scrollbar, #panels-container #switch .addwebpanel-wrapper {
|
|
display: none;
|
|
}
|
|
|
|
/* Tabcycler hide image */
|
|
.tabswitcher.list img.visual-list-preview {
|
|
visibility: collapse;
|
|
}
|
|
|
|
/* Tabcycler list */
|
|
.tabswitcher.list {
|
|
grid-template-columns: 0px 1fr;
|
|
grid-gap: unset;
|
|
max-height: 80vh !important;
|
|
}
|
|
/* Tabcycler hide scrollbar */
|
|
.tabswitcher.list .listed-tabs::-webkit-scrollbar {
|
|
display: none;
|
|
}
|