Преглед на файлове

fix(scss): case where invisible text on dark button hover/focus

Affects .dark a .btn :hover/focus

For example, with red button and red link color, led to red button with (invisible) red text on button hover/focus.
George Cushen преди 4 години
родител
ревизия
217538023f
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      wowchemy/assets/scss/wowchemy/_root.scss

+ 2 - 2
wowchemy/assets/scss/wowchemy/_root.scss

@@ -134,8 +134,8 @@ a:focus {
   color: $sta-dark-link;
 }
 
-.dark a:hover,
-.dark a:focus {
+.dark a:not(.btn):hover,
+.dark a:not(.btn):focus {
   color: $sta-dark-link-hover;
 }