1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

49 lines
945 B
SCSS
Raw Normal View History

2018-07-23 13:50:38 +02:00
/*
Pagination is handled pretty well by bootstrap.
2018-07-23 17:09:23 +02:00
We add some minor extensions, like a breakable paginator.
2018-07-23 13:50:38 +02:00
*/
.pagination {
li.break {
a {
border: none;
border-left: 1px solid #ddd;
&:hover {
background: none;
}
}
}
2018-07-23 17:09:23 +02:00
.pagination-select {
width: auto;
position: relative;
float: left;
padding: 6px 12px;
margin-left: -1px;
line-height: 1.42857143;
color: #337ab7;
text-decoration: none;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 3px;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
2018-07-23 18:50:19 +02:00
cursor: pointer;
-moz-appearance: none;
-webkit-appearance: none
2018-07-23 17:09:23 +02:00
}
li.active {
.pagination-select {
background-color: #337ab7;
color: #fff;
}
}
2018-07-23 13:50:38 +02:00
}