Prevent itemlist in classic cit and edit bibl dialogs from expanding

Also
- Cleanup the XUL of said dialogs
- Refactor, spearate and clarify custom CSS injection into FX XUL
  elements
This commit is contained in:
Adomas Venčkauskas 2024-04-16 11:44:58 +03:00
parent 76b7f4be4f
commit c9561f1041
12 changed files with 170 additions and 146 deletions

View file

@ -36,4 +36,13 @@
flex: 1 1 auto;
margin-bottom: 8px;
}
}
// richlistbox elements are crazy and will expand beyond the window size
// unless all/most elements in the hierarchy that contain that
// richlistbox have a min-height: 0 set
.contain-richlistbox {
vbox, hbox {
min-height: 0;
}
}