forked from CaptaiNiveau/FirefoxSidebar
d3f8439102
* Update userChrome.css * Update userChrome.css * formatting * make csd top configurable * fix Z index of CSD * fix background (and round corners in GNOME) * remove unnecessary background color fix * more formatting * move sidebar switcher code to css file * even more formatting, fix typos * remove ugly border near sidebar switcher * add custom presets * Revert "remove ugly border near sidebar switcher" This reverts commit b8fd71d97c23c860a84c68aba74fb8e4253aaa7f. * remove empty space in fullscreen mode, remove unnecessary stuff * heavy rework, add first theme * rename first theme, add second * add KDE Plastik (same spacing as Oxygen) * somehow my system messed up..., fixed theme names
19 lines
383 B
CSS
19 lines
383 B
CSS
/*
|
|
Extension: Bookmark Arrow
|
|
Description: Adds an arrow next to the bookmark folder.
|
|
*/
|
|
|
|
.bookmark-item[container] {
|
|
margin-right: 10px !important;
|
|
}
|
|
|
|
/* Add down arrow to folders on the bookmark bar */
|
|
.bookmark-item[container]::after {
|
|
content: "ˇ";
|
|
opacity: 0.55;
|
|
padding-left: 3.5px;
|
|
font-size: 23px;
|
|
display: inline-block;
|
|
position: absolute;
|
|
top: 6.9px;
|
|
}
|