Przeglądaj źródła

Merge pull request #34333 from overleaf/em-scrollable-bibtex-modals

[web] Scroll the contents of the BibTeX modals

GitOrigin-RevId: 8fcbe2520dca458d0fa15ba98047d0bdfcb53596
Eric Mc Sween 2 miesięcy temu
rodzic
commit
85dafd4931

+ 12 - 0
services/web/frontend/stylesheets/components/modal.scss

@@ -33,6 +33,18 @@
   }
   }
 }
 }
 
 
+// OLModal wraps children in a FocusTrap that renders a <div> between
+// .modal-content and .modal-header/.modal-body/.modal-footer, breaking
+// Bootstrap's flex chain for scrollable modals. Make it a flex column so
+// .modal-body inside it can grow and scroll correctly.
+.modal-dialog-scrollable .modal-content > div {
+  display: flex;
+  flex-direction: column;
+  min-height: 0;
+  overflow: hidden;
+  flex: 1 1 auto;
+}
+
 .modal-content {
 .modal-content {
   @include shadow-lg;
   @include shadow-lg;