lbry-desktop/src/ui/scss/component/_pagination.scss

55 lines
926 B
SCSS
Raw Normal View History

2017-07-29 21:34:22 +02:00
.pagination {
display: flex;
align-items: center;
+ .form-field {
2019-06-11 20:10:58 +02:00
margin-left: var(--spacing-medium);
}
2017-07-29 21:34:22 +02:00
}
.pagination__item {
width: 3rem;
height: 3rem;
border-radius: 50%;
text-align: center;
2019-01-08 20:48:09 +01:00
&:not(.pagination__item--selected):hover {
color: $lbry-black;
}
&:not(.pagination__item--selected):not(.pagination__item--break):not(.disabled):hover {
background-color: $lbry-gray-1;
}
2018-06-21 20:32:16 +02:00
&:not(.pagination__item--previous):not(.pagination__item--next) {
font-weight: 600;
line-height: 3rem;
margin: 0 0.5em;
}
&:not(.pagination__item--break):not(.disabled) {
2018-06-21 20:32:16 +02:00
cursor: pointer;
2017-07-29 21:34:22 +02:00
}
2018-06-21 20:32:16 +02:00
2017-07-29 21:34:22 +02:00
> a {
display: block;
2017-07-29 21:34:22 +02:00
}
2017-07-17 08:06:04 +02:00
}
.pagination__item--break {
opacity: 0.3;
2017-07-17 08:06:04 +02:00
}
.pagination__item--previous,
.pagination__item--next {
font-size: 2.5rem;
line-height: 1;
position: relative;
2017-08-09 06:31:56 +02:00
}
2017-07-29 21:34:22 +02:00
.pagination__item--selected {
background-color: $lbry-teal-5;
2018-10-17 19:14:24 +02:00
color: $lbry-white;
}