Mercurial > nebulaweb3
comparison default/assets/scss/components/_pagination.scss @ 0:1d038bc9b3d2 default tip
Up:default
author | Liny <dev@neowd.com> |
---|---|
date | Sat, 31 May 2025 09:21:51 +0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:1d038bc9b3d2 |
---|---|
1 // main: ../style.scss | |
2 /******************************** | |
3 ********************************* | |
4 Pagination | |
5 ********************************* | |
6 *********************************/ | |
7 .pager, | |
8 .pagination { | |
9 .material-icons { | |
10 font-size: rem(12); | |
11 vertical-align: middle; | |
12 } | |
13 } | |
14 | |
15 .pager { | |
16 list-style: none; | |
17 display: flex; | |
18 padding-left: 0; | |
19 li.spacer { flex: 1 } | |
20 } | |
21 | |
22 .pagination { | |
23 body.rtl & { | |
24 .page-item{ | |
25 &:last-child .page-link { | |
26 border-top-left-radius: $border-radius; | |
27 border-bottom-left-radius: $border-radius; | |
28 border-top-right-radius: 0; | |
29 border-bottom-right-radius: 0; | |
30 } | |
31 &:first-child .page-link { | |
32 border-top-right-radius: $border-radius; | |
33 border-bottom-right-radius: $border-radius; | |
34 border-top-left-radius: 0; | |
35 border-bottom-left-radius: 0; | |
36 border-left: 0; | |
37 } | |
38 } | |
39 } | |
40 } |