Skip to content

Commit

Permalink
Tweaks to the Stragula flavour of the MediaWiki Chameleon skin (#21)
Browse files Browse the repository at this point in the history
Fix for multicolumns user manual menu in devices with 480px or less
* double column when it is a in devices with 480px or less
  • Loading branch information
ivanhercaz authored and kghbln committed Mar 17, 2018
1 parent d214ffc commit 8bca728
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions stragula.less
Original file line number Diff line number Diff line change
Expand Up @@ -719,6 +719,15 @@ table.smworgtable-v2-toc {
-moz-column-rule: 1px solid lightblue;
column-rule: 1px solid lightblue;
}

@media only screen and (max-width: 480px) {
.user-manual {
-webkit-column-count: 2 !important;
-moz-column-count: 2 !important;
column-count: 2 !important;
}
}

.admin-manual {
-webkit-column-count: 2;
-moz-column-count: 2;
Expand Down

0 comments on commit 8bca728

Please sign in to comment.