소스 검색

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;
 }