Browse Source

fixed text color in light theme

Patrick O'Carroll 7 years ago
parent
commit
c897485958
1 changed files with 7 additions and 1 deletions
  1. 7 1
      public/sass/components/_timepicker.scss

+ 7 - 1
public/sass/components/_timepicker.scss

@@ -77,7 +77,7 @@
     border: none;
     color: $text-color;
     &.active span {
-      color: $blue;
+      color: $query-blue;
       font-weight: bold;
     }
     .text-info {
@@ -88,6 +88,12 @@
       font-size: $font-size-sm;
       padding: 5px 11px;
     }
+    &:hover {
+      color: $text-color-strong;
+    }
+    &[disabled] {
+      color: $text-color;
+    }
   }
 }