willianmano / moodle-theme_moove

A Moodle Boost child theme
GNU General Public License v3.0
175 stars 157 forks source link

Issues in 2.3.3 version #95

Closed adamslodki closed 2 years ago

adamslodki commented 6 years ago

Hi, I customized version 2.3.2 to my needs, but after today's update to 2.3.3 I can not set a static height: 300px in hidden navigation.

My custom CSS looks like this:

.text{
  font-size: 13px;
}

#nav-drawer {
  overflow: scroll;
  overflow-x: hidden;
  .list-group .list-group-item a {
    padding: .20rem .5rem;
  }
}

#nav-drawer.closed {
  overflow: visible;

  [data-key="mycourses"] {
    ul{
      margin-top: -18px;
    }

    #MyCourseList{
      overflow: scroll;
      overflow-x: hidden;
      height: 300px;
    }
  }
}

"MyCourseList" id is added by me to <ul> in _flatnavigation.mustache. This custom CSS works great in version 2.2.0 and 2.3.2.

Still the nav drawer does not display correctly on the reset password page. I hide it with CSS: `#page-login-forgot_password {

nav-drawer{

display: none;

} }`

In version 2.3.2 an above there is no language menu on the top bar. I added in header.mustache to swow it.

<li class="nav-item">
  {{{ output.render_lang_menu }}}
</li>
adamslodki commented 6 years ago

Thank you for your work, but the problem still persists when the menu is hidden. When the list of courses is long, they go outside the browser window. Scroll bar is not visible. hiddent course list

When menu is not hidden everything is ok. Scroll bar is visible. course list

On production server with older version moove look like this. Height is set to 300px. production