소스 검색

apply gray color when the button is hovered

kaoritokashiki 5 년 전
부모
커밋
bd7856ad77
2개의 변경된 파일10개의 추가작업 그리고 1개의 파일을 삭제
  1. 9 0
      src/client/styles/scss/theme/_apply-colors-dark.scss
  2. 1 1
      src/client/styles/scss/theme/_apply-colors-light.scss

+ 9 - 0
src/client/styles/scss/theme/_apply-colors-dark.scss

@@ -207,6 +207,15 @@ ul.pagination {
   background-color: rgba($bgcolor-subnav, 0.85);
 }
 
+.three-stranded-button {
+  .btn-outline-primary {
+    &:hover {
+      color: $primary;
+      background-color: $gray-700;
+    }
+  }
+}
+
 // Search drop down
 #search-typeahead-asynctypeahead {
   background-color: $bgcolor-global;

+ 1 - 1
src/client/styles/scss/theme/_apply-colors-light.scss

@@ -136,7 +136,7 @@ $table-hover-bg: $bgcolor-table-hover;
   .btn-outline-primary {
     &:hover {
       color: $primary;
-      background-color: lighten($secondary, 45%);
+      background-color: $gray-200;
     }
   }
 }