Add bookmark_panel_enlarge.css (#391)

This commit is contained in:
Jason Lonsberry
2024-07-31 22:52:44 -04:00
committed by GitHub
parent 7eca4b1050
commit d47b63d180

View File

@@ -0,0 +1,39 @@
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/bookmark_panel_enlarge.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
/* Makes the Edit Bookmark dialog panel wider and the folder tree larger */
/* Width Section */
#editBookmarkPanel {
width: max(50vw, 32em);
}
/* Height Section */
/* Choose 1 of 3: Biggest (default), Big, or Balanced */
/* (1) Biggest folder tree, for use with collapsed tag panel */
#editBMPanel_folderTree {
height: 64vh !important;
}
/* (2) Big folder tree with default tag panel */
/*
#editBMPanel_folderTree {
height: 53vh !important;
}
*/
/* (3) Balanced folder tree with larger tag panel */
/*
#editBMPanel_folderTree {
height: 32vh !important;
}
#editBMPanel_tagsSelector {
height: 32vh !important;
}
*/