Skip to content

Commit

Permalink
Css fixes to file dialog to handle long Group/Owner names
Browse files Browse the repository at this point in the history
  • Loading branch information
will-moore committed Nov 28, 2024
1 parent 34bf0b8 commit 30ddb12
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ <h4>Legend</h4>
role="dialog"
aria-hidden="true"
>
<div class="modal-dialog modal-lg">
<div class="modal-dialog modal-lg" style="--bs-modal-width: 900px">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Open</h5>
Expand All @@ -1035,8 +1035,8 @@ <h5 class="modal-title">Open</h5>
<table class="table table-sm">
<thead>
<tr>
<th style="width: 7%"></th>
<th style="width: 45%">
<th></th>
<th>
<form class="row" role="form">
<div class="col-auto">
<label class="col-sm-2 control-label">Name</label>
Expand All @@ -1062,8 +1062,8 @@ <h5 class="modal-title">Open</h5>
</div>
</form>
</th>
<th style="width: 25%">
<form class="row" role="form">
<th>
<form class="row" role="form" style="flex-wrap: nowrap;">
<div class="col-auto">
<label class="col-sm-2 control-label">Created</label>
</div>
Expand All @@ -1081,10 +1081,11 @@ <h5 class="modal-title">Open</h5>
</button>
</form>
</th>
<th style="width: 12%">
<th>
Owner:
<div class="btn-group" title="Filter files by owner">
<button
style="max-width: 120px; overflow: hidden;"
type="button"
class="btn dropdown-toggle btn-outline-secondary"
data-bs-toggle="dropdown"
Expand All @@ -1100,10 +1101,11 @@ <h5 class="modal-title">Open</h5>
</ul>
</div>
</th>
<th style="width: 12%">
<th>
Group:
<div class="btn-group" title="Filter files by group">
<button
style="max-width: 120px; overflow: hidden;"
type="button"
class="btn dropdown-toggle btn-outline-secondary"
data-bs-toggle="dropdown"
Expand Down

0 comments on commit 30ddb12

Please sign in to comment.