mirror of
https://github.com/CaptaiNiveau/FirefoxSidebar.git
synced 2024-11-22 06:42:49 +00:00
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
46 lines
1,005 B
CSS
46 lines
1,005 B
CSS
:root {
|
|
--sidebar-width: 50px;
|
|
--toolbar-height: -50px;
|
|
--menubar-height: -74px;
|
|
--sidebar-padding: calc(var(--sidebar-width) + 5px);
|
|
--toolbar-start-end-padding: 5px !important;
|
|
|
|
/*
|
|
Uncomment this if you want a custom sidebar header color,
|
|
this shouldn't be needed anymore but might be!
|
|
*/
|
|
/* --custom-sidebar-bg: #000 !important; */
|
|
|
|
/* ====== Extension Settings ====== */
|
|
|
|
/* === Window Control / Client Side Display Settings === */
|
|
--csd-width: 100px;
|
|
--csd-top: 6px;
|
|
|
|
/*
|
|
If you are putting this on the left or right side uncomment the side
|
|
preferences below and comment the other
|
|
*/
|
|
|
|
/*
|
|
Left Side
|
|
Default: --csd-left: 50px; --csd-margin-left: 92px;
|
|
*/
|
|
/*
|
|
--csd-left: 50px;
|
|
--csd-margin-left: 92px;
|
|
*/
|
|
/* ====== */
|
|
|
|
/*
|
|
Right Side
|
|
Defaults: --csd-right: 0px; --csd-margin-right: 95px;
|
|
*/
|
|
|
|
--csd-right: 0px;
|
|
--csd-margin-right: 95px;
|
|
|
|
/* ====== */
|
|
|
|
/* === END: Window Control / Client Side Display Settings === */
|
|
}
|