1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Content/Backgrid/paginator.less

59 lines
1.1 KiB
Plaintext
Raw Normal View History

2013-06-27 02:45:05 +03:00
@import "../prefixer";
2013-06-27 03:45:16 +03:00
@import "../../Shared/Styles/clickable.less";
2013-06-26 08:42:44 +03:00
2013-06-26 03:33:17 +03:00
.backgrid-paginator {
text-align : center;
box-sizing : border-box;
border-top : none;
2013-06-26 08:42:44 +03:00
.box-sizing(border-box);
2013-06-27 02:45:05 +03:00
.border-radius(0 0 4px 4px);
2013-07-18 00:53:25 +03: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 03:33:17 +03: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 03:45:16 +03:00
.pager-btn {
.clickable;
}
2013-06-26 03:33:17 +03:00
}
.active {
2013-07-18 00:53:25 +03:00
span {
2013-06-26 03:33:17 +03:00
background-color : #f5f5f5;
color : #999999;
cursor : default;
2013-07-18 00:53:25 +03:00
width : inherit;
padding : 0px 2px;
2013-06-26 03:33:17 +03:00
}
}
.disabled {
i, span {
color : #999999;
cursor : default;
}
}
}
}