mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2026-09-16 03:25:18 -04:00
Changes to QC tweaks
This commit is contained in:
@@ -19,10 +19,10 @@
|
||||
|
||||
/* Skinnier statusbar */
|
||||
#browser footer .toolbar-statusbar {
|
||||
height: 20px;
|
||||
height: 22px;
|
||||
}
|
||||
#browser footer .toolbar-statusbar button {
|
||||
height: 20px;
|
||||
height: 22px;
|
||||
width: 100%;
|
||||
}
|
||||
#browser footer .toolbar-statusbar .override.button-icon {
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
/* Find-in-page background color for no matches */
|
||||
/* Find-in-page background colour for no matches */
|
||||
.find-in-page.fip-nomatches {
|
||||
background: darkred;
|
||||
}
|
||||
@@ -32,7 +32,12 @@
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
||||
/* Find-in-page no animation */
|
||||
/* Find-in-page hit no animation */
|
||||
.fip-active-hit {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Find-in-page hit no page dimming */
|
||||
.find-in-page-wrapper:has(.find-in-page) + .row-wrapper .webpage>webview {
|
||||
filter: unset !important;
|
||||
}
|
||||
@@ -29,16 +29,17 @@
|
||||
<body>
|
||||
<h1>CSS</h1><p>
|
||||
<a class="NORM" href="..">..</a><br>
|
||||
[4.2K Mar 13 10:35] <a class="EXEC" href="./custom.css">custom.css</a><br>
|
||||
[ 704 Nov 25 2022] <a class="EXEC" href="./find-in-page.css">find-in-page.css</a><br>
|
||||
[4.2K Jun 4 15:27] <a class="EXEC" href="./custom.css">custom.css</a><br>
|
||||
[ 853 May 17 23:19] <a class="EXEC" href="./find-in-page.css">find-in-page.css</a><br>
|
||||
[2.0K Mar 4 13:31] <a class="EXEC" href="./header.css">header.css</a><br>
|
||||
[ 934 Jun 7 21:13] <a class="EXEC" href="./quick-command-tweaks.css">quick-command-tweaks.css</a><br>
|
||||
[1001 Nov 25 2022] <a class="EXEC" href="./speed-dials.css">speed-dials.css</a><br>
|
||||
[ 354 Nov 25 2022] <a class="EXEC" href="./tabcycler.css">tabcycler.css</a><br>
|
||||
<br><br>
|
||||
</p>
|
||||
<p>
|
||||
|
||||
0 directories, 5 files
|
||||
0 directories, 6 files
|
||||
<br><br>
|
||||
</p>
|
||||
</html>
|
||||
|
||||
Executable
+31
@@ -0,0 +1,31 @@
|
||||
/* QC Placement */
|
||||
.qc-modal {top: 15vh !important;}
|
||||
|
||||
/* QC Width */
|
||||
.quick-command-container, .quick-commands > div {width: 60vw !important;}
|
||||
.quick-commands > div > div {max-width: 100% !important;}
|
||||
|
||||
/* QC Height */
|
||||
.quick-commands > div {height: 60vh !important;}
|
||||
.quick-commands {max-height: 100% !important;}
|
||||
|
||||
/* QC Transparency */
|
||||
.quick-commands, input.quick-command-search-hint {background-color: transparent !important;}
|
||||
|
||||
/* Selected line */
|
||||
.quick-command[data-selected] {background-color: var(--colorHighlightBgAlpha) !important;}
|
||||
|
||||
.qc-modal > div {
|
||||
color: var(--colorFgIntense) !important;
|
||||
background-color: var(--colorBgAlphaBlur) !important;
|
||||
backdrop-filter: var(--backgroundBlur);
|
||||
border: 2px solid var(--colorHighlightBgAlpha);
|
||||
border-radius: var(--radius);
|
||||
}
|
||||
|
||||
/* Hide scrollbar */
|
||||
.qc-modal ::-webkit-scrollbar-track,
|
||||
.qc-modal ::-webkit-scrollbar-thumb,
|
||||
.qc-modal ::-webkit-scrollbar-button {
|
||||
display: none;
|
||||
}
|
||||
Reference in New Issue
Block a user