166 lines
3.9 KiB
Plaintext
Executable File
166 lines
3.9 KiB
Plaintext
Executable File
//
|
|
// Pagination
|
|
// --------------------------------------------------
|
|
|
|
.pagination {
|
|
position: relative;
|
|
|
|
ul {
|
|
background: @pagination-color;
|
|
color: @inverse;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: inline-block;
|
|
border-radius: @border-radius-large;
|
|
|
|
li {
|
|
display: inline-block;
|
|
margin-right: -3px;
|
|
vertical-align: middle;
|
|
|
|
// Pseudos and states
|
|
&:first-child {
|
|
border-radius: @border-radius-large 0 0 @border-radius-large;
|
|
|
|
&.previous + li {
|
|
> a,
|
|
> span {
|
|
border-left-width: 5px;
|
|
}
|
|
}
|
|
}
|
|
&:last-child {
|
|
border-radius: 0 @border-radius-large @border-radius-large 0;
|
|
margin-right: 0;
|
|
}
|
|
&.previous,
|
|
&.next {
|
|
> a,
|
|
> span {
|
|
background: transparent;
|
|
border: none;
|
|
border-right: 2px solid mix(@pagination-color, white, 66%);
|
|
font-size: floor(@component-font-size-base * 1.067); // ~16px
|
|
margin: 0 9px 0 0;
|
|
padding: 12px 17px;
|
|
border-radius: @border-radius-large 0 0 @border-radius-large;
|
|
|
|
&,
|
|
&:hover,
|
|
&:focus {
|
|
border-color: mix(@pagination-color, white, 66%) !important;
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
& {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
&.next {
|
|
margin-left: 9px;
|
|
|
|
> a,
|
|
> span {
|
|
border-left: 2px solid mix(@pagination-color, white, 66%);
|
|
border-right: none;
|
|
margin: 0;
|
|
border-radius: 0 @border-radius-large @border-radius-large 0;
|
|
}
|
|
}
|
|
&.active {
|
|
> a,
|
|
> span {
|
|
background-color: @inverse;
|
|
border-color: @inverse;
|
|
border-width: 2px !important;
|
|
color: @pagination-color;
|
|
margin: 10px 5px 9px;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
background-color: @inverse;
|
|
border-color: @inverse;
|
|
color: @pagination-color;
|
|
}
|
|
}
|
|
&.previous,
|
|
&.next {
|
|
border-color: mix(@pagination-color, white, 66%);
|
|
|
|
> a, > span {
|
|
margin: 0;
|
|
|
|
&,
|
|
&:hover,
|
|
&:focus {
|
|
background-color: @brand-secondary;
|
|
color: @inverse;
|
|
}
|
|
}
|
|
}
|
|
&.previous {
|
|
margin-right: 6px;
|
|
}
|
|
}
|
|
|
|
// Link
|
|
> a,
|
|
> span {
|
|
display: inline-block;
|
|
background: @inverse;
|
|
border: 5px solid @pagination-color;
|
|
color: @inverse;
|
|
font-size: ceil(@component-font-size-base * 0.889);
|
|
line-height: 16px;
|
|
margin: 7px 2px 6px;
|
|
min-width: 0;
|
|
min-height: 16px;
|
|
padding: 0 4px;
|
|
border-radius: 50px;
|
|
.transition(~"background .2s ease-out, border-color 0s ease-out, color .2s ease-out");
|
|
|
|
&:hover,
|
|
&:focus {
|
|
background-color: @brand-secondary;
|
|
border-color: @brand-secondary;
|
|
color: @inverse;
|
|
.transition(~"background .2s ease-out, border-color .2s ease-out, color .2s ease-out");
|
|
}
|
|
&:active {
|
|
background-color: mix(@brand-secondary, black, 85%);
|
|
border-color: mix(@brand-secondary, black, 85%);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Navigation buttons
|
|
> .btn {
|
|
&.previous,
|
|
&.next {
|
|
margin-right: 8px;
|
|
font-size: ceil(@component-font-size-base * 0.933); // ~14px
|
|
line-height: 1.429; // ~20px
|
|
padding-left: 23px;
|
|
padding-right: 23px;
|
|
|
|
[class*="fui-"] {
|
|
font-size: @icon-normal;
|
|
margin-left: -2px;
|
|
margin-top: -2px;
|
|
}
|
|
}
|
|
|
|
&.next {
|
|
margin-left: 8px;
|
|
margin-right: 0;
|
|
|
|
[class*="fui-"] {
|
|
margin-right: -2px;
|
|
margin-left: 4px;
|
|
}
|
|
}
|
|
}
|
|
} |