Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Commit

Permalink
fix(ranged-pagination): make style rules less specific
Browse files Browse the repository at this point in the history
  • Loading branch information
rayrutjes committed Mar 17, 2017
1 parent 1570fac commit 7e284fc
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions packages/vue-algolia-ranged-pagination/src/RangedPagination.vue
Original file line number Diff line number Diff line change
Expand Up @@ -156,23 +156,26 @@
}
}
.alg-ranged-pagination__item--disabled {
button:hover {
text-decoration: none;
}
}
}
.alg-ranged-pagination__item--active label {
font-weight: bold;
.alg-ranged-pagination__item--disabled {
button:hover {
text-decoration: none;
}
.alg-ranged-pagination__item--disabled, .alg-ranged-pagination__item--active {
}
label:hover {
text-decoration: none;
cursor: default;
}
.alg-ranged-pagination__item--active label {
font-weight: bold;
}
.alg-ranged-pagination__item--disabled, .alg-ranged-pagination__item--active {
label:hover {
text-decoration: none;
cursor: default;
}
}
</style>

0 comments on commit 7e284fc

Please sign in to comment.