Merge branch 'MDL-81307-fix-402' of https://github.com/sarjona/moodle into MOODLE_402_STABLE

This commit is contained in:
Sara Arjona
2024-04-10 12:53:01 +02:00
3 changed files with 14 additions and 3 deletions
+4 -1
View File
@@ -10,8 +10,11 @@ body.behat-site {
// Sticky footer can overlap with elements so we keep it relative for behat.
&.hasstickyfooter .stickyfooter,
.stickyfooter {
position: relative;
position: inherit;
z-index: inherit;
.bulkcancel {
position: inherit;
}
}
// We need more spacing in action menus so behat does not click on the wrong menu item.
+5 -1
View File
@@ -35403,9 +35403,13 @@ body.behat-site .fixed-top {
}
body.behat-site.hasstickyfooter .stickyfooter,
body.behat-site .stickyfooter {
position: relative;
position: inherit;
z-index: inherit;
}
body.behat-site.hasstickyfooter .stickyfooter .bulkcancel,
body.behat-site .stickyfooter .bulkcancel {
position: inherit;
}
body.behat-site .dropdown-item {
margin-top: 4px !important; /* stylelint-disable declaration-no-important */
}
+5 -1
View File
@@ -35337,9 +35337,13 @@ body.behat-site .fixed-top {
}
body.behat-site.hasstickyfooter .stickyfooter,
body.behat-site .stickyfooter {
position: relative;
position: inherit;
z-index: inherit;
}
body.behat-site.hasstickyfooter .stickyfooter .bulkcancel,
body.behat-site .stickyfooter .bulkcancel {
position: inherit;
}
body.behat-site .dropdown-item {
margin-top: 4px !important; /* stylelint-disable declaration-no-important */
}