Skip to content

Commit

Permalink
Merge branch 'MDL-81184-main' of https://github.com/roland04/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
HuongNV13 committed Mar 12, 2024
2 parents 2202ed0 + 513a574 commit 7f138ac
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
4 changes: 4 additions & 0 deletions theme/boost/scss/moodle/debug.scss
Expand Up @@ -12,6 +12,10 @@ body.behat-site {
.stickyfooter {
position: inherit;
z-index: inherit;
.sticky-footer-content-wrapper {
padding: 0;
margin: 0;
}
}

// We need more spacing in action menus so behat does not click on the wrong menu item.
Expand Down
2 changes: 1 addition & 1 deletion theme/boost/scss/moodle/sticky-footer.scss
Expand Up @@ -11,7 +11,7 @@ body {
position: fixed;
right: 0;
left: 0;
height: $stickyfooter-height;
min-height: $stickyfooter-height;
bottom: calc(#{$stickyfooter-height} * -1);
transition: bottom .5s;
z-index: $zindex-fixed;
Expand Down
7 changes: 6 additions & 1 deletion theme/boost/style/moodle.css
Expand Up @@ -36023,6 +36023,11 @@ body.behat-site .stickyfooter {
position: inherit;
z-index: inherit;
}
body.behat-site.hasstickyfooter .stickyfooter .sticky-footer-content-wrapper,
body.behat-site .stickyfooter .sticky-footer-content-wrapper {
padding: 0;
margin: 0;
}
body.behat-site .dropdown-item {
margin-top: 4px !important; /* stylelint-disable declaration-no-important */
}
Expand Down Expand Up @@ -36112,7 +36117,7 @@ body {
position: fixed;
right: 0;
left: 0;
height: max(80px, 0.9375rem * 3);
min-height: max(80px, 0.9375rem * 3);
bottom: calc(max(80px, 0.9375rem * 3) * -1);
transition: bottom 0.5s;
z-index: 1030;
Expand Down
7 changes: 6 additions & 1 deletion theme/classic/style/moodle.css
Expand Up @@ -35957,6 +35957,11 @@ body.behat-site .stickyfooter {
position: inherit;
z-index: inherit;
}
body.behat-site.hasstickyfooter .stickyfooter .sticky-footer-content-wrapper,
body.behat-site .stickyfooter .sticky-footer-content-wrapper {
padding: 0;
margin: 0;
}
body.behat-site .dropdown-item {
margin-top: 4px !important; /* stylelint-disable declaration-no-important */
}
Expand Down Expand Up @@ -36046,7 +36051,7 @@ body {
position: fixed;
right: 0;
left: 0;
height: max(80px, 0.9375rem * 3);
min-height: max(80px, 0.9375rem * 3);
bottom: calc(max(80px, 0.9375rem * 3) * -1);
transition: bottom 0.5s;
z-index: 1030;
Expand Down

0 comments on commit 7f138ac

Please sign in to comment.