_button.scss
4 years ago
_checkbox.scss
4 years ago
_collapse.scss
4 years ago
_colorpicker.scss
4 years ago
_dimensions.scss
4 years ago
_f-select.scss
4 years ago
_iconpicker.scss
4 years ago
_input.scss
4 years ago
_list-table.scss
4 years ago
_notice.scss
4 years ago
_pagination.scss
4 years ago
_radio.scss
4 years ago
_repeater.scss
4 years ago
_select.scss
4 years ago
_switcher.scss
4 years ago
_tabs.scss
4 years ago
_textarea.scss
4 years ago
_time.scss
4 years ago
_wp-media.scss
4 years ago
_pagination.scss
65 lines
| 1 | .cx-vui-pagination { |
| 2 | |
| 3 | &-items { |
| 4 | display: flex; |
| 5 | justify-content: flex-start; |
| 6 | align-items: center; |
| 7 | } |
| 8 | |
| 9 | &-item { |
| 10 | display: flex; |
| 11 | justify-content: center; |
| 12 | align-items: center; |
| 13 | width: 32px; |
| 14 | height: 32px; |
| 15 | margin: 0 3px; |
| 16 | padding: 4px 8px; |
| 17 | position: relative; |
| 18 | text-decoration: none; |
| 19 | border: 1px solid #E8E8E8; |
| 20 | border-radius: 2px; |
| 21 | text-shadow: none; |
| 22 | font-weight: 600; |
| 23 | font-size: 13px; |
| 24 | line-height: normal; |
| 25 | color: #7B7E81; |
| 26 | background: transparent; |
| 27 | cursor: pointer; |
| 28 | |
| 29 | &:first-child { |
| 30 | margin-left: 0; |
| 31 | .rtl & { |
| 32 | margin-left: 3px; |
| 33 | margin-right: 0; |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | &:last-child { |
| 38 | margin-right: 0; |
| 39 | .rtl & { |
| 40 | margin-left: 0; |
| 41 | margin-right: 3px; |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | &-active { |
| 46 | color: $color__accent; |
| 47 | border: 1px solid $color__accent; |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | &-disabled { |
| 52 | cursor: not-allowed; |
| 53 | opacity: .5; |
| 54 | } |
| 55 | |
| 56 | &-prev, |
| 57 | &-next { |
| 58 | svg { |
| 59 | .rtl & { |
| 60 | transform: scale(-1); |
| 61 | } |
| 62 | } |
| 63 | } |
| 64 | } |
| 65 |