Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@chrisrebert.com>2015-10-30 07:51:31 +0300
committerChris Rebert <code@chrisrebert.com>2015-12-08 09:37:17 +0300
commita878c4f0c68fcb194ffc8e1d5733f922c8e6f6e5 (patch)
tree562003750b7642f1a9b6bed9c2d3e93dc0ef0661 /scss/_pagination.scss
parent7eadfbc9b224fc43e25dacd6b22031953e03c4f7 (diff)
.pagination>{li => .page}
Diffstat (limited to 'scss/_pagination.scss')
-rw-r--r--scss/_pagination.scss12
1 files changed, 6 insertions, 6 deletions
diff --git a/scss/_pagination.scss b/scss/_pagination.scss
index 282cd48863..1cb124b231 100644
--- a/scss/_pagination.scss
+++ b/scss/_pagination.scss
@@ -5,7 +5,7 @@
margin-bottom: $spacer-y;
@include border-radius();
- > li {
+ .page {
display: inline; // Remove list-style and block-level defaults
> a,
@@ -35,8 +35,8 @@
}
}
- > li > a,
- > li > span {
+ .page > a,
+ .page > span {
@include hover-focus {
color: $pagination-hover-color;
background-color: $pagination-hover-bg;
@@ -44,8 +44,8 @@
}
}
- > .active > a,
- > .active > span {
+ .page.active > a,
+ .page.active > span {
@include plain-hover-focus {
z-index: 2;
color: $pagination-active-color;
@@ -55,7 +55,7 @@
}
}
- > .disabled {
+ .page.disabled {
> span,
> a {
@include plain-hover-focus {