feat(firefox): lock sidebar width
This commit is contained in:
parent
3207405614
commit
bb04ac2f4f
1 changed files with 6 additions and 1 deletions
|
@ -13,10 +13,15 @@ lib.mkIf osConfig.programs.firefox.enable {
|
||||||
name = "ny";
|
name = "ny";
|
||||||
isDefault = true;
|
isDefault = true;
|
||||||
userChrome = ''
|
userChrome = ''
|
||||||
/* hides the native tabs */
|
/* Hides the native tabs */
|
||||||
#TabsToolbar {
|
#TabsToolbar {
|
||||||
visibility: collapse;
|
visibility: collapse;
|
||||||
}
|
}
|
||||||
|
/* Fixed width for the sidebar */
|
||||||
|
#sidebar-box {
|
||||||
|
max-width: 17.5% !important;
|
||||||
|
min-width: 17.5% !important;
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
settings = {
|
settings = {
|
||||||
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue