]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Add pointer-events:none to disabled pagination/pager links 18699/head
authorPatrick H. Lauke <redux@splintered.co.uk>
Sun, 27 Dec 2015 10:00:40 +0000 (10:00 +0000)
committerPatrick H. Lauke <redux@splintered.co.uk>
Sun, 27 Dec 2015 10:03:09 +0000 (10:03 +0000)
as currently this was missed out (compared to disabled `a.btn`)

scss/_pager.scss
scss/_pagination.scss

index 933036061db1ddb0312d46b0a4024069e619a902..1aaa2440849cbaf15c6ead0b8ea1a94e7184b5f5 100644 (file)
@@ -30,6 +30,7 @@
     > a {
       @include plain-hover-focus {
         color: $pager-disabled-color;
+        pointer-events: none;
         cursor: $cursor-disabled;
         background-color: $pager-bg;
       }
index d0c3765df8e6bfd07a5fc6f5ba97e7a059297ff4..c0b82399fbb9be75c7b81ac297c3f2174cf552ee 100644 (file)
@@ -34,6 +34,7 @@
   &.disabled .page-link {
     @include plain-hover-focus {
       color: $pagination-disabled-color;
+      pointer-events: none;
       cursor: $cursor-disabled;
       background-color: $pagination-disabled-bg;
       border-color: $pagination-disabled-border;