Merge branch 'MDL-77278-master' of https://github.com/ferranrecio/moodle

This commit is contained in:
Andrew Nicols
2023-02-23 10:43:50 +08:00
3 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ $primary-nav-padding-y: ($spacer / 4) !default;
$primary-nav-padding-x: ($spacer / 2) !default;
$navbar-height: 60px !default;
$stickyfooter-height: clamp(96px, calc(#{$font-size-base} * 3), calc(#{$font-size-base} * 3)) !default;
$stickyfooter-height: calc(max(96px, calc(#{$font-size-base} * 3))) !default;
$course-content-maxwidth: 830px !default;
$medium-content-maxwidth: 1120px !default;
$h5p-content-maxwidth: 960px !default;
+5 -5
View File
@@ -11732,7 +11732,7 @@ ul {
right: 2rem; }
.hasstickyfooter .btn-footer-popover {
bottom: calc(1rem + clamp(96px, calc(0.9375rem * 3), calc(0.9375rem * 3))); }
bottom: calc(1rem + calc(max(96px, calc(0.9375rem * 3)))); }
.popover.footer .popover-body {
padding: 0; }
@@ -20212,8 +20212,8 @@ body {
position: fixed;
right: 0;
left: 0;
height: clamp(96px, calc(0.9375rem * 3), calc(0.9375rem * 3));
bottom: calc(clamp(96px, calc(0.9375rem * 3), calc(0.9375rem * 3)) * -1);
height: calc(max(96px, calc(0.9375rem * 3)));
bottom: calc(calc(max(96px, calc(0.9375rem * 3))) * -1);
transition: bottom .5s;
z-index: 1000;
overflow: hidden;
@@ -20864,7 +20864,7 @@ span[data-flexitour="container"][x-placement="right"], span[data-flexitour="cont
.hasstickyfooter .drawer-left,
.hasstickyfooter .drawer-right {
top: 60px;
height: calc(100vh - 60px - clamp(96px, calc(0.9375rem * 3), calc(0.9375rem * 3))); }
height: calc(100vh - 60px - calc(max(96px, calc(0.9375rem * 3)))); }
#page.drawers {
position: relative;
overflow-y: auto;
@@ -20891,7 +20891,7 @@ span[data-flexitour="container"][x-placement="right"], span[data-flexitour="cont
margin-left: 285px;
margin-right: 315px; }
#page.drawers.hasstickyfooter {
height: calc(100vh - 60px - clamp(96px, calc(0.9375rem * 3), calc(0.9375rem * 3))); } }
height: calc(100vh - 60px - calc(max(96px, calc(0.9375rem * 3)))); } }
.drawercontrolbuttons {
margin-top: 92px; }
+6 -6
View File
@@ -11732,7 +11732,7 @@ ul {
right: 2rem; }
.hasstickyfooter .btn-footer-popover {
bottom: calc(1rem + clamp(96px, calc(0.9375rem * 3), calc(0.9375rem * 3))); }
bottom: calc(1rem + calc(max(96px, calc(0.9375rem * 3)))); }
.popover.footer .popover-body {
padding: 0; }
@@ -20158,8 +20158,8 @@ body {
position: fixed;
right: 0;
left: 0;
height: clamp(96px, calc(0.9375rem * 3), calc(0.9375rem * 3));
bottom: calc(clamp(96px, calc(0.9375rem * 3), calc(0.9375rem * 3)) * -1);
height: calc(max(96px, calc(0.9375rem * 3)));
bottom: calc(calc(max(96px, calc(0.9375rem * 3))) * -1);
transition: bottom .5s;
z-index: 1000;
overflow: hidden;
@@ -20810,7 +20810,7 @@ span[data-flexitour="container"][x-placement="right"], span[data-flexitour="cont
.hasstickyfooter .drawer-left,
.hasstickyfooter .drawer-right {
top: 50px;
height: calc(100vh - 50px - clamp(96px, calc(0.9375rem * 3), calc(0.9375rem * 3))); }
height: calc(100vh - 50px - calc(max(96px, calc(0.9375rem * 3)))); }
#page.drawers {
position: relative;
overflow-y: auto;
@@ -20837,7 +20837,7 @@ span[data-flexitour="container"][x-placement="right"], span[data-flexitour="cont
margin-left: 285px;
margin-right: 315px; }
#page.drawers.hasstickyfooter {
height: calc(100vh - 50px - clamp(96px, calc(0.9375rem * 3), calc(0.9375rem * 3))); } }
height: calc(100vh - 50px - calc(max(96px, calc(0.9375rem * 3)))); } }
.drawercontrolbuttons {
margin-top: 92px; }
@@ -22451,4 +22451,4 @@ body {
padding-bottom: 0.5rem; }
body.hasstickyfooter #page-footer {
padding-bottom: calc(1rem * .5 + clamp(96px, calc(0.9375rem * 3), calc(0.9375rem * 3))); }
padding-bottom: calc(1rem * .5 + calc(max(96px, calc(0.9375rem * 3)))); }