Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@

.portal-main-content {
grid-area: main;
outline: none;
}

.portal-main-container {
Expand All @@ -210,7 +211,6 @@
grid-template-rows: 1fr auto;
align-content: space-between;
overflow-x: auto;
overflow-y: auto;
}

#sakai-account-panel {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
#else
#set( $numberTools = $pageColumn0Tools.size() )
#end
<div class="portal-main-container container-fluid pt-4 d-flex flex-column">
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

d-flex was added in SAK-50454 Polls improve voting ui responsiveness (#12856)

<main id="$pageWrapperClass" class="portal-main-content #if( $numberTools > 1 || $homePage)Mrphs-multipleTools #end px-3" role="main">
<div class="portal-main-container container-fluid pt-4">
<main id="$pageWrapperClass" class="portal-main-content #if( $numberTools > 1 || $homePage)Mrphs-multipleTools #end px-3" role="main" tabindex="-1">
<h1 class="skip visually-hidden" tabindex="-1" id="tocontent">${rloader.sit_contentshead}</h1>

#if (${currentRole} && $roleSwitchState == false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">

<script>
const originalPreventDefault = Event.prototype.preventDefault;
Event.prototype.preventDefault = function() {
console.trace('preventDefault called for:', this);
originalPreventDefault.apply(this, arguments);
};

var portal = {
"i18n": {
"theme_switch_to_light": "$rloader.sit_theme_switch_to_light",
Expand Down
Loading