mirror of
https://github.com/moodle/moodle.git
synced 2025-04-14 04:52:36 +02:00
MDL-62884 privacy: Additional fix for popper.js
For a table with action menus inside a scrollable region, we need to ensure the table is at least big enough.
This commit is contained in:
parent
459c2d909d
commit
a3124b15dc
@ -286,8 +286,10 @@ form.popupform div {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
// Minimum height required for a menu in a table inside a scrollable div.
|
||||
.no-overflow > .generaltable {
|
||||
margin-bottom: 0;
|
||||
min-height: 10em;
|
||||
}
|
||||
// Accessibility features
|
||||
|
||||
|
@ -8999,7 +8999,8 @@ form.popupform div {
|
||||
overflow: auto; }
|
||||
|
||||
.no-overflow > .generaltable {
|
||||
margin-bottom: 0; }
|
||||
margin-bottom: 0;
|
||||
min-height: 10em; }
|
||||
|
||||
.accesshide {
|
||||
position: absolute;
|
||||
|
@ -374,8 +374,10 @@ form.popupform div {
|
||||
.pagelayout-report .no-overflow {
|
||||
overflow: visible;
|
||||
}
|
||||
// Minimum height required for a menu in a table inside a scrollable div.
|
||||
.no-overflow > .generaltable {
|
||||
margin-bottom: 0;
|
||||
min-height: 10em;
|
||||
}
|
||||
// Accessibility features
|
||||
|
||||
|
@ -2676,6 +2676,7 @@ form.popupform div {
|
||||
}
|
||||
.no-overflow > .generaltable {
|
||||
margin-bottom: 0;
|
||||
min-height: 10em;
|
||||
}
|
||||
.accesshide {
|
||||
position: absolute;
|
||||
|
Loading…
x
Reference in New Issue
Block a user