fixes #4604: add span support to .pager component
This commit is contained in:
parent
5da217b96e
commit
4775bc910c
2 changed files with 12 additions and 6 deletions
|
|
@ -12,7 +12,8 @@
|
|||
.pager li {
|
||||
display: inline;
|
||||
}
|
||||
.pager a {
|
||||
.pager a,
|
||||
.pager span {
|
||||
display: inline-block;
|
||||
padding: 5px 14px;
|
||||
background-color: #fff;
|
||||
|
|
@ -23,14 +24,16 @@
|
|||
text-decoration: none;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
.pager .next a {
|
||||
.pager .next a,
|
||||
.pager .next span {
|
||||
float: right;
|
||||
}
|
||||
.pager .previous a {
|
||||
float: left;
|
||||
}
|
||||
.pager .disabled a,
|
||||
.pager .disabled a:hover {
|
||||
.pager .disabled a:hover,
|
||||
.pager .disabled span {
|
||||
color: @grayLight;
|
||||
background-color: #fff;
|
||||
cursor: default;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue