1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
Matthias Hannig 12957f93c8 normalized style
2018-07-23 18:50:19 +02:00

49 lines
945 B
SCSS

/*
Pagination is handled pretty well by bootstrap.
We add some minor extensions, like a breakable paginator.
*/
.pagination {
li.break {
a {
border: none;
border-left: 1px solid #ddd;
&:hover {
background: none;
}
}
}
.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;
cursor: pointer;
-moz-appearance: none;
-webkit-appearance: none
}
li.active {
.pagination-select {
background-color: #337ab7;
color: #fff;
}
}
}