1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-14 23:13:24 +01:00
Radarr/UI/Content/Backgrid/paginator.less

59 lines
1.1 KiB
Plaintext
Raw Normal View History

2013-06-27 01:45:05 +02:00
@import "../prefixer";
2013-06-27 02:45:16 +02:00
@import "../../Shared/Styles/clickable.less";
2013-06-26 07:42:44 +02:00
2013-06-26 02:33:17 +02:00
.backgrid-paginator {
text-align : center;
box-sizing : border-box;
border-top : none;
2013-06-26 07:42:44 +02:00
.box-sizing(border-box);
2013-06-27 01:45:05 +02:00
.border-radius(0 0 4px 4px);
2013-07-17 23:53:25 +02:00
position: relative;
.total-records {
display : inline-block;
height : 30px;
padding : 0;
line-height: 30px;
font-size : 13px;
position : absolute;
right : 0;
}
2013-06-26 02:33:17 +02:00
ul {
display : inline-block;
li {
display : inline;
i, span {
float : left;
width : 30px;
height : 30px;
padding : 0;
line-height : 30px;
text-decoration : none;
}
2013-06-27 02:45:16 +02:00
.pager-btn {
.clickable;
}
2013-06-26 02:33:17 +02:00
}
.active {
2013-07-17 23:53:25 +02:00
span {
2013-06-26 02:33:17 +02:00
background-color : #f5f5f5;
color : #999999;
cursor : default;
2013-07-17 23:53:25 +02:00
width : inherit;
padding : 0px 2px;
2013-06-26 02:33:17 +02:00
}
}
.disabled {
i, span {
color : #999999;
cursor : default;
}
}
}
}