diff --git a/theme/boost/scss/moodle/debug.scss b/theme/boost/scss/moodle/debug.scss index 6f6497b7181..3485e962ff5 100644 --- a/theme/boost/scss/moodle/debug.scss +++ b/theme/boost/scss/moodle/debug.scss @@ -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. diff --git a/theme/boost/style/moodle.css b/theme/boost/style/moodle.css index e5d4f3e2bbc..fadd476bc2e 100644 --- a/theme/boost/style/moodle.css +++ b/theme/boost/style/moodle.css @@ -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 */ } diff --git a/theme/classic/style/moodle.css b/theme/classic/style/moodle.css index a2f28a377cc..e85943bb947 100644 --- a/theme/classic/style/moodle.css +++ b/theme/classic/style/moodle.css @@ -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 */ }