]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fixes #20975: made navbar-text color on navbar-dark equal to non-hovered link color
authorValentine Abanosimov <pruzhina2008@gmail.com>
Sun, 30 Oct 2016 18:37:47 +0000 (21:37 +0300)
committerabvalentine <pruzhina2008@gmail.com>
Sun, 30 Oct 2016 18:43:54 +0000 (21:43 +0300)
scss/_navbar.scss

index 7dc2a2b0d8502a325ca49d1bf2f6638f33e94036..46e1d89eb66834aa4f1b0d88b0e4f6c4afe9c8f3 100644 (file)
   .navbar-divider {
     background-color: rgba(0,0,0,.075);
   }
+  
+  .navbar-text {
+    color: $navbar-light-color;
+  }
 }
 
 // White links against a dark background
   .navbar-divider {
     background-color: rgba(255,255,255,.075);
   }
+  
+  .navbar-text {
+    color: $navbar-dark-color;
+  }
 }