Created
November 26, 2022 18:28
-
-
Save apple1417/d4a046e2a4da83f5f141ec00442655b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Move findbar to top right */ | |
.browserContainer > findbar { | |
position: absolute; | |
top: -1px; | |
right: 0px; | |
contain: content; | |
border-radius: 0 0 var(--toolbarbutton-border-radius) var(--toolbarbutton-border-radius); | |
} | |
/* Hide status */ | |
findbar .findbar-find-status { | |
display: none; | |
} | |
/* Replace checkboxes with buttons */ | |
findbar .checkbox-check { | |
display: none !important; | |
} | |
findbar checkbox { | |
border: 1px solid var(--input-border-color); | |
border-radius: var(--toolbarbutton-border-radius); | |
padding: 2px 4px; | |
margin: -2px 4px !important; | |
transition: 0.1s ease-in-out; | |
} | |
findbar checkbox[checked="true"] { | |
background: var(--button-active-bgcolor); | |
transition: 0.1s ease-in-out; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment