Issues after merging latest version of master in Release Candidate v2.6.0

Summary

After merging latest version of master in Release Candidate v2.6.0, some issues appeared. More specifically:

  1. Under 1300px, the menu that appears is not scrollable
  2. Sub-menus on sidebar do not appear over 1300px
  3. Color in background is applied in pagination too when it shouldn't (Screenshot 3)
  4. Link colors in sidebars are also applied in contextual links

Possible Fixes

For (2):

The issue is caused from layout.scss,

media only screen and (min-width: 1300px)
.dropdown > .dropdown-menu > .dropdown > .dropdown-menu {
    position: absolute;
    left: -100%;
    top: -57%;
    display: none;
}

For (4):

The issue is caused from colors.scss:

Change:

.sidebar-left nav ul li a, .sidebar-right nav ul li a

to:

.sidebar-left nav ul(:not contextual-links) li a, .sidebar-right nav ul(:not contextual-links) li a

Add header so that it will be applied only in header region.

Screenshots

Screenshot_2020-02-18_at_11.51.00 Screenshot_2020-02-18_at_11.51.18

Edited by Konstantinos Platis