Skip to content
Snippets Groups Projects
Commit 85dae14e authored by Alexander Bias's avatar Alexander Bias
Browse files

Adjusted occurrences of the .row-fluid grid class to .row after the BS4Alpha...

Adjusted occurrences of the .row-fluid grid class to .row after the BS4Alpha compatibility layer has been removed in theme Boost core.
parent aa7259e5
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@ Changes
### Unreleased
* 2020-11-28 - Adjusted occurrences of the .row-fluid grid class to .row after the BS4Alpha compatibility layer has been removed in theme Boost core.
* 2020-11-28 - Adjusted SCSS brand color and gray color variables after the BS4Alpha compatibility layer has been removed in theme Boost core.
PLEASE NOTE: If you have used $brand-* or $gray-* variables in your RAW SCSS as we did in Boost Campus up to now, you might have to adapt your SCSS code now as well.
See https://github.com/moodle/moodle/blob/MOODLE_38_STABLE/theme/boost/scss/moodle/bs4alphacompat.scss#L29-L43 for the compatibility variable assignments which have vanished.
......
......@@ -830,7 +830,7 @@ blockquote::before {
/* We need a top border only if there are footer block columns. */
@if variable-exists(footerblocks) {
@if $footerblocks != '0columns' {
.container-fluid:nth-of-type(2) > .row-fluid {
.container-fluid:nth-of-type(2) > .row {
border-top: 1px solid #fff;
padding-top: 1rem;
}
......@@ -840,7 +840,7 @@ blockquote::before {
/* If all Moodle links are hidden in the footer, we don't need a top line for the performance info.*/
@if variable-exists(footerhidehelplink) and variable-exists(footerhidelogininfo) and variable-exists(footerhidehomelink) {
@if $footerhidehelplink == 'yes' and $footerhidelogininfo == 'yes' and $footerhidehomelink == 'yes' {
.container-fluid:nth-of-type(2) > .row-fluid {
.container-fluid:nth-of-type(2) > .row {
border-top: none;
}
}
......
......@@ -49,7 +49,7 @@
{{/bcbttbutton}}
<footer id="page-footer" class="py-3 bg-dark text-light">
<div class="container-fluid">
<div class="row-fluid">
<div class="row">
<div id="course-footer" class="col-12">
{{{ output.course_footer }}}
</div>
......@@ -100,7 +100,7 @@
{{! Add standard Moodle footer behind the blocks area. }}
<div class="container-fluid">
<div class="row-fluid">
<div class="row">
<div class="col-12">
{{# output.page_doc_link }}
<p class="helplink">{{{ output.page_doc_link }}}</p>
......
......@@ -31,7 +31,7 @@
{{# footnotesetting }}
<div class="footnote p-3 bg-dark text-light">
<div class="container-fluid">
<div class="row-fluid">
<div class="row">
{{{ footnotesetting }}}
</div>
</div>
......
......@@ -79,7 +79,7 @@
</div>
</div>
{{# loginbackgroundimagetext }}
<div class="row-fluid justify-content-end" id="loginbackgroundimagetext">
<div class="row justify-content-end" id="loginbackgroundimagetext">
<span class="m-3 px-3 py-2 d-none d-md-inline">
{{loginbackgroundimagetext}}
</span>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment