mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
MDL-81294 core: Fix sticky footer height
In MDL-81184 a regression was generated by changing the height property with min-height in the sticky footer. That caused unexpended behaviour of the sticky footer being partially displayed in the course page for small devices. Replacing min-height with height as the original design.
This commit is contained in:
parent
757be30c39
commit
1248fa7537
@ -11,7 +11,7 @@ body {
|
|||||||
position: fixed;
|
position: fixed;
|
||||||
right: 0;
|
right: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
min-height: $stickyfooter-height;
|
height: $stickyfooter-height;
|
||||||
bottom: calc(#{$stickyfooter-height} * -1);
|
bottom: calc(#{$stickyfooter-height} * -1);
|
||||||
transition: bottom .5s;
|
transition: bottom .5s;
|
||||||
z-index: $zindex-fixed;
|
z-index: $zindex-fixed;
|
||||||
|
@ -36112,7 +36112,7 @@ body {
|
|||||||
position: fixed;
|
position: fixed;
|
||||||
right: 0;
|
right: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
min-height: max(80px, 0.9375rem * 3);
|
height: max(80px, 0.9375rem * 3);
|
||||||
bottom: calc(max(80px, 0.9375rem * 3) * -1);
|
bottom: calc(max(80px, 0.9375rem * 3) * -1);
|
||||||
transition: bottom 0.5s;
|
transition: bottom 0.5s;
|
||||||
z-index: 1030;
|
z-index: 1030;
|
||||||
|
@ -36046,7 +36046,7 @@ body {
|
|||||||
position: fixed;
|
position: fixed;
|
||||||
right: 0;
|
right: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
min-height: max(80px, 0.9375rem * 3);
|
height: max(80px, 0.9375rem * 3);
|
||||||
bottom: calc(max(80px, 0.9375rem * 3) * -1);
|
bottom: calc(max(80px, 0.9375rem * 3) * -1);
|
||||||
transition: bottom 0.5s;
|
transition: bottom 0.5s;
|
||||||
z-index: 1030;
|
z-index: 1030;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user