1
0
mirror of https://github.com/Pathduck/pathduck.github.io.git synced 2025-12-31 11:55:20 -05:00
Files
pathduck.github.io/vivaldi/mods/CSS/quick-command-tweaks.css
2023-12-14 13:52:16 +01:00

35 lines
922 B
CSS
Executable File

/* Placement */
.qc-modal {top: 15vh !important;}
/* Width */
.quick-command-container, .quick-commands > div {width: 60vw !important;}
.quick-commands > div > div {max-width: 100% !important;}
/* Height */
.quick-commands > div {height: 60vh !important;}
.quick-commands {max-height: 100% !important;}
/* Transparency */
.quick-commands, .qc-entry {background-color: transparent !important;}
/* Selected line */
.quick-command[data-selected] {background-color: var(--colorHighlightBg) !important;}
/* Styling */
.qc-modal > div {
color: var(--colorFgIntense) !important;
background-color: var(--colorBgAlphaBlur) !important;
backdrop-filter: var(--backgroundBlur);
border: 2px solid var(--colorAccentBgAlphaHeavy);
border-radius: var(--radius);
}
/* Hide scrollbar */
/***
.qc-modal ::-webkit-scrollbar-track,
.qc-modal ::-webkit-scrollbar-thumb,
.qc-modal ::-webkit-scrollbar-button {
display: none;
}
***/