Fix Shift+Enter sometimes not moving caret
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / style / ui / pagination.scss
CommitLineData
abe07e47
MW
1.pagination > ul {
2 display: inline-flex;
3
4 > li {
5 display: flex;
6 flex: 0 0 auto;
7
8 > .invisible {
9 display: none;
10 }
11
12 > a,
13 > span {
14 color: $wcfContentText;
3ed0b3ce 15 padding: 2px 8px 0;
abe07e47
MW
16 }
17
18 &.disabled > span {
19 color: $wcfContentDimmedText;
20 }
21
22 &.active > a,
23 &.active > span,
24 > a:hover {
25 background-color: $wcfButtonBackgroundActive;
26 color: $wcfButtonTextActive;
27 }
28
29 > .icon {
30 height: auto;
31 line-height: inherit;
32 width: auto;
33 }
34
35 &:not(:last-child) {
36 margin-right: 1px;
37 }
22d06c7a
MW
38
39 &:not(.skip) {
40 > a,
41 > span {
42 padding: 4px 8px;
43 }
44 }
abe07e47
MW
45 }
46}