Minor improvements to the mobile message view
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / style / layout / pageNavigation.scss
CommitLineData
c8d07791 1@include screen-md-up {
431e4cb4
AE
2 .pageNavigation {
3 background-color: $wcfNavigationBackground;
abe07e47 4 color: $wcfNavigationText;
431e4cb4 5 flex: 0 0 auto;
5d4bad9e 6 padding: 10px 0;
431e4cb4
AE
7
8 > div {
9 align-items: center;
10 display: flex;
11 justify-content: flex-end;
5d4bad9e 12 min-height: 20px;
431e4cb4
AE
13 }
14
15 .icon {
a9e43634 16 color: inherit;
431e4cb4 17 }
abe07e47 18
431e4cb4
AE
19 a {
20 color: $wcfNavigationLink;
21
22 &:hover {
23 color: $wcfNavigationLinkActive;
24 }
abe07e47
MW
25 }
26 }
abe07e47 27
0b6161c6
MW
28 .boxesHeaderBoxes + .pageNavigation {
29 margin-top: 1px;
30 }
c8d07791
MW
31}
32
33@include screen-lg {
431e4cb4
AE
34 .pageNavigationIcons {
35 display: flex;
abe07e47 36 flex: 0 0 auto;
431e4cb4 37 flex-direction: row-reverse;
5d4bad9e 38 margin-left: 10px;
abe07e47 39
431e4cb4
AE
40 > li {
41 flex: 0 0 auto;
42
43 &:not(:last-child) {
44 margin-left: 10px;
abe07e47 45 }
abe07e47
MW
46 }
47 }
48}
431e4cb4 49
c8d07791 50@include screen-sm-down {
431e4cb4
AE
51 .pageNavigation {
52 display: none;
53 }
54}
c8d07791
MW
55
56@include screen-md-down {
57 .pageNavigationIcons {
58 display: none;
59 }
60}