mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
40 lines
659 B
Plaintext
40 lines
659 B
Plaintext
|
//
|
||
|
// Pager pagination
|
||
|
// --------------------------------------------------
|
||
|
|
||
|
|
||
|
.pager {
|
||
|
margin: @baseLineHeight 0;
|
||
|
list-style: none;
|
||
|
text-align: center;
|
||
|
.clearfix();
|
||
|
}
|
||
|
.pager li {
|
||
|
display: inline;
|
||
|
}
|
||
|
.pager a,
|
||
|
.pager span {
|
||
|
display: inline-block;
|
||
|
padding: 5px 14px;
|
||
|
background-color: #fff;
|
||
|
border: 1px solid #ddd;
|
||
|
.border-radius(15px);
|
||
|
}
|
||
|
.pager a:hover {
|
||
|
text-decoration: none;
|
||
|
background-color: #f5f5f5;
|
||
|
}
|
||
|
.pager .next a,
|
||
|
.pager .next span {
|
||
|
float: right;
|
||
|
}
|
||
|
.pager .previous a {
|
||
|
float: left;
|
||
|
}
|
||
|
.pager .disabled a,
|
||
|
.pager .disabled a:hover,
|
||
|
.pager .disabled span {
|
||
|
color: @grayLight;
|
||
|
background-color: #fff;
|
||
|
cursor: default;
|
||
|
}
|