mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-01 12:32:40 +08:00
4cc2207513
Original unminified source code (dev folder - js, css, less) (fixes #6) Grunt build system Multiple identities correction (fixes #9) Compose html editor (fixes #12) New general settings - Loading Description New warning about default admin password Split general and login screen settings
37 lines
No EOL
604 B
Text
37 lines
No EOL
604 B
Text
//
|
|
// Pager pagination
|
|
// --------------------------------------------------
|
|
|
|
|
|
.pager {
|
|
margin: @baseLineHeight 0;
|
|
list-style: none;
|
|
text-align: center;
|
|
.clearfix();
|
|
}
|
|
.pager li {
|
|
display: inline;
|
|
}
|
|
.pager a {
|
|
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 {
|
|
float: right;
|
|
}
|
|
.pager .previous a {
|
|
float: left;
|
|
}
|
|
.pager .disabled a,
|
|
.pager .disabled a:hover {
|
|
color: @grayLight;
|
|
background-color: #fff;
|
|
cursor: default;
|
|
} |