mirror of https://github.com/Kozea/pygal.git
Python to generate nice looking SVG graph
http://pygal.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
659 B
40 lines
659 B
// |
|
// Pager pagination |
|
// -------------------------------------------------- |
|
|
|
|
|
.pager { |
|
margin: @baseLineHeight 0; |
|
list-style: none; |
|
text-align: center; |
|
.clearfix(); |
|
} |
|
.pager li { |
|
display: inline; |
|
} |
|
.pager a, |
|
.pager span { |
|
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, |
|
.pager .next span { |
|
float: right; |
|
} |
|
.pager .previous a { |
|
float: left; |
|
} |
|
.pager .disabled a, |
|
.pager .disabled a:hover, |
|
.pager .disabled span { |
|
color: @grayLight; |
|
background-color: #fff; |
|
cursor: default; |
|
} |