? ?
avatar C-Lodder
C-Lodder
2 Mar 2021

Steps to reproduce the issue

Visit the backend login page on a mobile device or reduce your viewport width.

Expected result

Login form inside the viewport

Actual result

Login form outside of the viewport

screeny

avatar C-Lodder C-Lodder - open - 2 Mar 2021
avatar joomla-cms-bot joomla-cms-bot - change - 2 Mar 2021
Labels Added: ?
avatar joomla-cms-bot joomla-cms-bot - labeled - 2 Mar 2021
avatar infograf768
infograf768 - comment - 2 Mar 2021

Confirmed.

avatar infograf768
infograf768 - comment - 2 Mar 2021

Looks related to

.sidebar-wrapper {
    z-index: 1010;
    min-height: calc(100vh - 69px);  // by commenting this it solves the issue here.
    background-color: var(--atum-sidebar-bg);
    box-shadow: 0 2px 4px rgba(0,0,0,.16),0 2px 4px rgba(0,0,0,.23);
}

I guess it should be overriden for the loginform

avatar infograf768
infograf768 - comment - 2 Mar 2021

Maybe modifying

.container-main,
.sidebar-wrapper {
@include media-breakpoint-down(md) {
flex: 1 0 100% !important;
max-width: 100% !important;
}
}

to

  .container-main,
  .sidebar-wrapper {

    @include media-breakpoint-down(md) {
      flex: 1 0 100% !important;
      max-width: 100% !important;
      min-height: auto;
    }
  }

@drmenzelit

avatar Quy
Quy - comment - 2 Mar 2021

Duplicate #29119

avatar drmenzelit
drmenzelit - comment - 2 Mar 2021

@infograf768 your code will help. But I'm wondering about the order of the elements: in the css the sidebar is defined with order: 2 for small displays

@include media-breakpoint-down(md) {
  order: 2;
}

but it is overwritten from the class order-0
So I'm not sure what to do...

avatar infograf768
infograf768 - comment - 2 Mar 2021

As I am not familiar with “order”, don’t know either.

avatar ciar4n ciar4n - change - 9 Mar 2021
Labels Added: ?
avatar ciar4n ciar4n - labeled - 9 Mar 2021
avatar drmenzelit drmenzelit - change - 10 Mar 2021
Status New Closed
Closed_Date 0000-00-00 00:00:00 2021-03-10 18:30:58
Closed_By drmenzelit
avatar drmenzelit drmenzelit - close - 10 Mar 2021
avatar drmenzelit
drmenzelit - comment - 10 Mar 2021

Closing this as we have a PR #32634

Add a Comment

Login with GitHub to post a comment