kaori 4 лет назад
Родитель
Сommit
aeb7594735

+ 11 - 9
packages/app/src/styles/theme/_apply-colors-dark.scss

@@ -252,16 +252,18 @@ ul.pagination {
 
   // Pagetree
   .grw-pagetree {
-    .grw-triangle-icon {
-      svg {
-        fill: $gray-500;
+    .grw-pagetree-item {
+      .grw-triangle-icon {
+        svg {
+          fill: $gray-500;
+        }
+      }
+      &:hover {
+        background: $bgcolor-list-hover;
+      }
+      &:active {
+        background: lighten($bgcolor-list-hover, 5%);
       }
-    }
-    &:hover {
-      background: $bgcolor-list-hover;
-    }
-    &:active {
-      background: lighten($bgcolor-list-hover, 5%);
     }
   }
 }

+ 11 - 9
packages/app/src/styles/theme/_apply-colors-light.scss

@@ -169,16 +169,18 @@ $border-color: $border-color-global;
 
   // Pagetree
   .grw-pagetree {
-    .grw-triangle-icon {
-      svg {
-        fill: $gray-400;
+    .grw-pagetree-item {
+      .grw-triangle-icon {
+        svg {
+          fill: $gray-400;
+        }
+      }
+      &:hover {
+        background: $bgcolor-list-hover;
+      }
+      &:active {
+        background: $bgcolor-list-active;
       }
-    }
-    &:hover {
-      background: $bgcolor-list-hover;
-    }
-    &:active {
-      background: $bgcolor-list-active;
     }
   }
 }