Skip to content

Commit

Permalink
Batch modal too small to show all options
Browse files Browse the repository at this point in the history
#### Steps to reproduce the issue

When you click on Batch button, for instance in Menu Manager, it shows the batch dialog with three Select controls. They look fine, but when you click on any of Select controls, items are shown below modal-footer.

In the worst case, the second line of controls options are totally hidden.

#### Expected result

All Select controls have to work.

#### Actual result

Not possible to select options.

#### System information (as much as possible)

J 3.5 Beta

#### Additional comments

".modal-body {min-height: 450px;}" is a viable workaround (instead of max-height). All options can be selected in Menu Manager, Content Manager or Module Manager. Please, test these three cases.
  • Loading branch information
anibalsanchez committed Nov 14, 2015
1 parent eea2e7d commit 3942b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/protostar/css/template.css
Original file line number Diff line number Diff line change
Expand Up @@ -3926,7 +3926,7 @@ input[type="submit"].btn.btn-mini {
.modal-body {
width: 98%;
position: relative;
max-height: 400px;
min-height: 450px;
padding: 1%;
}
.modal-body iframe {
Expand Down

0 comments on commit 3942b23

Please sign in to comment.