mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
4f9a056bea
[web] Spacing adjustments around "\begin {now}" card on gallery and blog GitOrigin-RevId: 822a91bb156222b61cbf671d78522fc942d4e5b4
57 lines
1.1 KiB
SCSS
57 lines
1.1 KiB
SCSS
// Pagination (multiple pages)
|
|
// --------------------------------------------------
|
|
.pagination {
|
|
display: inline-block;
|
|
padding-left: 0;
|
|
margin: 0;
|
|
|
|
> li {
|
|
display: inline-block;
|
|
|
|
> a,
|
|
> span {
|
|
position: relative;
|
|
float: left; // Collapse white-space
|
|
padding: var(--spacing-04) var(--spacing-06);
|
|
line-height: var(--line-height-base);
|
|
text-decoration: none;
|
|
color: var(--neutral-90);
|
|
background-color: #fff;
|
|
border: 1px solid var(--neutral-30);
|
|
margin-left: -1px;
|
|
font-weight: 600;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: var(--neutral-90);
|
|
background-color: var(--neutral-10);
|
|
border-color: var(--neutral-30);
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
&:first-child {
|
|
> a,
|
|
> span {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
> .active > a,
|
|
> .active > span {
|
|
&,
|
|
&:hover,
|
|
&:focus {
|
|
z-index: 2;
|
|
color: var(--green-70);
|
|
background-color: var(--green-10);
|
|
border-color: var(--neutral-30);
|
|
cursor: default;
|
|
}
|
|
}
|
|
|
|
.ellipses {
|
|
pointer-events: none;
|
|
}
|
|
}
|