Ver Fonte

Merge pull request #4879 from weseek/imprv/83624-apply-acive-color-of-triangle-btn

improve triangle btn color when it's hovered
Yuki Takei há 4 anos atrás
pai
commit
5ad5bb8686

+ 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 {