You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 21, 2021. It is now read-only.
"If you are not familiar with git, feel free to just create an issue with the style you want to add."
I don't know git, and I am new to this Firefox styling. :) Please feel free to mod this as needed! The property -moz-appearance is the most important, because otherwise there are big white sections I can't remove.
/*
* Description: Color fix bookmarks library, slightly compacts size (unintentional side effect)
*
* Putting this in your userChrome.css fixes the bookmarks library when it opens in another window.
* (Ctrl+Shift+O [letter o, not number 0])
*
* Putting this in your userContent.css fixes the bookmarks library when it opens in another tab.
* ( chrome://browser/content/places/places.xul )
*
* This is not intended for styling the bookmarks toolbar or sidebar.
*
* Screenshot: https://i.imgur.com/9hTJUni.png
*
* Contributor(s): WithThisHerring
*/
@-moz-document url(chrome://browser/content/places/places.xul)
{
* /* note that the asterisk (*) means all items! */
{
color: #9c9c9c !important;
background: #2f2f2f !important;
border-color: #00000000;
border-width: 1px;
opacity: 1.0;
}
treecol,
treechildren,
#placesToolbox,
#places,
toolbarbutton,
button,
textbox
{
-moz-appearance: toolbargripper !important; /* removes white tool sections */
}
textbox,
tree
{
border-style: solid !important;
border-color: #111111 !important;
border-width: 1px !important;
-moz-appearance: none !important; /* removes white tool sections */
}
treecol
{
border-bottom-style: solid !important;
border-bottom-color: #111111 !important;
border-bottom-width: 1px !important;
-moz-appearance: none !important; /* removes white tool sections */
}
}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
"If you are not familiar with git, feel free to just create an issue with the style you want to add."
I don't know git, and I am new to this Firefox styling. :) Please feel free to mod this as needed! The property -moz-appearance is the most important, because otherwise there are big white sections I can't remove.
The text was updated successfully, but these errors were encountered: