فهرست منبع

Merge branch 'imprv/adjust-color-of-popover-arrow' into imprv/improve-link-edit-modal

yusuketk 5 سال پیش
والد
کامیت
35be13217d
1فایلهای تغییر یافته به همراه29 افزوده شده و 8 حذف شده
  1. 29 8
      src/client/styles/scss/theme/_apply-colors-dark.scss

+ 29 - 8
src/client/styles/scss/theme/_apply-colors-dark.scss

@@ -272,20 +272,41 @@ ul.pagination {
     color: inherit;
     color: inherit;
   }
   }
 
 
-  &.bs-popover-top .arrow:after {
-    border-top-color: $bgcolor-global;
+  &.bs-popover-top .arrow {
+    &::before {
+      border-top-color: $secondary;
+    }
+
+    &::after {
+      border-top-color: $bgcolor-global;
+    }
   }
   }
+  &.bs-popover-bottom .arrow {
+    &::before {
+      border-bottom-color: $secondary;
+    }
 
 
-  &.bs-popover-bottom .arrow:after {
-    border-bottom-color: $bgcolor-global;
+    &::after {
+      border-bottom-color: $bgcolor-global;
+    }
   }
   }
+  &.bs-popover-right .arrow {
+    &::before {
+      border-right-color: $secondary;
+    }
 
 
-  &.bs-popover-right .arrow:after {
-    border-right-color: $bgcolor-global;
+    &::after {
+      border-right-color: $bgcolor-global;
+    }
   }
   }
+  &.bs-popover-left .arrow {
+    &::before {
+      border-left-color: $secondary;
+    }
 
 
-  &.bs-popover-left .arrow:after {
-    border-left-color: $bgcolor-global;
+    &::after {
+      border-left-color: $bgcolor-global;
+    }
   }
   }
 }
 }