소스 검색

apply gray-color when a triangle btn is hovered

kaori 4 년 전
부모
커밋
f49ea86247
2개의 변경된 파일8개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 2
      packages/app/src/styles/theme/_apply-colors-dark.scss
  2. 4 2
      packages/app/src/styles/theme/_apply-colors-light.scss

+ 4 - 2
packages/app/src/styles/theme/_apply-colors-dark.scss

@@ -256,8 +256,10 @@ ul.pagination {
   .grw-pagetree {
     .grw-pagetree-item {
       .grw-triangle-icon {
-        svg {
-          fill: $gray-500;
+        &:not(:hover) {
+          svg {
+            fill: $gray-500;
+          }
         }
       }
       &:hover {

+ 4 - 2
packages/app/src/styles/theme/_apply-colors-light.scss

@@ -173,8 +173,10 @@ $border-color: $border-color-global;
   .grw-pagetree {
     .grw-pagetree-item {
       .grw-triangle-icon {
-        svg {
-          fill: $gray-400;
+        &:not(:hover) {
+          svg {
+            fill: $gray-400;
+          }
         }
       }
       &:hover {