Skip to content

Instantly share code, notes, and snippets.

@GarthTheChicken
GarthTheChicken / gist:24ccdebb389f24d41841b82d89fbaaf4
Created February 4, 2021 12:09
QNX based Firefox UserChrome
/* TABS */
#TabsToolbar {
/*display: none;*/
}
/*full-width tabs*/
#TabsToolbar .tabbrowser-tab[fadein]:not([pinned]) {
flex-grow: 1 !important;
@GarthTheChicken
GarthTheChicken / inset_input.css
Created November 11, 2018 13:00 — forked from nrrrdcore/inset_input.css
The Perfect Inset Input CSS
input {
height: 34px;
width: 100%;
border-radius: 3px;
border: 1px solid transparent;
border-top: none;
border-bottom: 1px solid #DDD;
box-shadow: inset 0 1px 2px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;
}