Ver código fonte

adjust border color

yusuketk 5 anos atrás
pai
commit
a4c78dc781
1 arquivos alterados com 29 adições e 8 exclusões
  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;
+    }
   }
   }
 }
 }