mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-02 15:21:44 -05:00
* Fixed Bug #403 . Fixed: Added word wrapping for long filenames with no spaces on headers that would cause info modal to overflow. * Fixed Bug #403 . Fixed: Added word breaking for long filenames with no spaces which would cause volume info modal to overflow. * Fixed Bug #403 Fixed: Added word breaking for long filenames with no spaces on headers, titles, and lists which would cause overflow. Affected: Series Detail header, Edit Series modal title, and Volumes Info modal (View Files) modal. * Removing some inline styles, moving style from global to component level * whoops, forgot to remove inline * Added word breaking and removed inline styles for headers . Fixed: Card Detail, List Item Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
13 lines
244 B
SCSS
13 lines
244 B
SCSS
.modal {
|
|
z-index: 1056; // ngb v12 bug: https://github.com/ng-bootstrap/ng-bootstrap/issues/2686
|
|
}
|
|
|
|
.modal-content {
|
|
background-color: var(--bs-body-bg);
|
|
color: var(--body-text-color);
|
|
}
|
|
|
|
.modal-title {
|
|
word-break: break-all;
|
|
}
|