Re-add breadcrumbs on tablets in landscape mode
authorMarcel Werk <burntime@woltlab.com>
Fri, 24 Feb 2017 17:37:55 +0000 (18:37 +0100)
committerMarcel Werk <burntime@woltlab.com>
Fri, 24 Feb 2017 17:37:55 +0000 (18:37 +0100)
see #2195

wcfsetup/install/files/style/layout/pageNavigation.scss

index 21b5b904f07002c44f7d51d68d838acfab69d47c..0af341b7e90b027676afe5c97addae2e619c7a45 100644 (file)
@@ -1,4 +1,4 @@
-@include screen-lg {
+@include screen-md-up {
        .pageNavigation {
                background-color: $wcfNavigationBackground;
                color: $wcfNavigationText;
@@ -28,7 +28,9 @@
        .boxesHeaderBoxes + .pageNavigation {
                margin-top: 1px;
        }
-       
+}
+
+@include screen-lg {
        .pageNavigationIcons {
                display: flex;
                flex: 0 0 auto;
        }
 }
 
-@include screen-md-down {
+@include screen-sm-down {
        .pageNavigation {
                display: none;
        }
 }
+
+@include screen-md-down {
+       .pageNavigationIcons {
+               display: none;
+       }
+}