Files
pathduck.github.io/vivaldi/mods/CSS/quick-command-tweaks.css
T
2025-04-10 13:56:19 +02:00

35 lines
944 B
CSS
Executable File

/* Placement */
.qc-modal {top: 15vh !important;}
/* Styling */
.qc-modal .modal-wrapper {
color: var(--colorFgIntense) !important;
background-color: var(--colorBgAlphaBlur) !important;
backdrop-filter: var(--backgroundBlur);
border: 2px solid var(--colorAccentBgAlphaHeavy);
border-radius: var(--radius);
}
/* 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: var(--colorBgAlphaHeavy) !important;}
/* Selected line */
.quick-command[data-selected] {background-color: var(--colorHighlightBg) !important;}
/* Hide scrollbar */
/***
.qc-modal ::-webkit-scrollbar-track,
.qc-modal ::-webkit-scrollbar-thumb,
.qc-modal ::-webkit-scrollbar-button {
display: none;
}
***/