LEFT | RIGHT |
(no file at all) | |
| 1 // This file is part of acceptableads.org. |
| 2 // Copyright (C) 2016 Eyeo GmbH |
| 3 // |
| 4 // acceptableads.org is free software: you can redistribute it and/or modify |
| 5 // it under the terms of the GNU General Public License as published by |
| 6 // the Free Software Foundation, either version 3 of the License, or |
| 7 // (at your option) any later version. |
| 8 // |
| 9 // acceptableads.org is distributed in the hope that it will be useful, |
| 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 // GNU General Public License for more details. |
| 13 // |
| 14 // You should have received a copy of the GNU General Public License |
| 15 // along with acceptableads.org. If not, see <http://www.gnu.org/licenses/>. |
| 16 |
| 17 .outer |
| 18 { |
| 19 position: absolute; |
| 20 top: 96px; |
| 21 bottom: 0px; |
| 22 height: auto; |
| 23 width: 100%; |
| 24 overflow: auto; |
| 25 } |
| 26 |
| 27 @media(min-width: $sidebar-breakpoint-x) |
| 28 { |
| 29 html[dir="ltr"] |
| 30 { |
| 31 .outer |
| 32 { |
| 33 padding-left: $sidebar-width; |
| 34 } |
| 35 } |
| 36 |
| 37 html[dir="rtl"] |
| 38 { |
| 39 .outer |
| 40 { |
| 41 padding-right: $sidebar-width; |
| 42 } |
| 43 } |
| 44 } |
LEFT | RIGHT |