Commit 4775bc91 authored by Mark Otto's avatar Mark Otto
Browse files

fixes #4604: add span support to .pager component

parent 5da217b9
5 merge requests!4855Solved bug in bootstrap tooltip when entering and leaving quickly,!4830Tabs should generate hide events,!4789Typeahead. Added the ability to process serializable Objects as items from given source (According to guidelines ),!4705Add `dynamic` helper class for popovers and an opt-in mixin to control their size, border-width, inner color, and border color,!4642Codespell
Showing with 12 additions and 6 deletions
+12 -6
......@@ -4693,7 +4693,8 @@ input[type="submit"].btn.btn-mini {
display: inline;
}
.pager a {
.pager a,
.pager span {
display: inline-block;
padding: 5px 14px;
background-color: #fff;
......@@ -4708,7 +4709,8 @@ input[type="submit"].btn.btn-mini {
background-color: #f5f5f5;
}
.pager .next a {
.pager .next a,
.pager .next span {
float: right;
}
......@@ -4717,7 +4719,8 @@ input[type="submit"].btn.btn-mini {
}
.pager .disabled a,
.pager .disabled a:hover {
.pager .disabled a:hover,
.pager .disabled span {
color: #999999;
cursor: default;
background-color: #fff;
......
......@@ -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;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment