Updated hardcoded colors to LESS variables

This commit is contained in:
Ken Hoes
2016-05-03 12:55:13 -04:00
committed by John Mitchell
parent 3c90ecba0b
commit bf7a259f0b
4 changed files with 5 additions and 4 deletions

View File

@@ -1,4 +1,5 @@
/** @define Dashboard */ /** @define Dashboard */
<<<<<<< HEAD
@import "../shared/branding/colors.default.less"; @import "../shared/branding/colors.default.less";
.Dashboard { .Dashboard {

View File

@@ -145,9 +145,9 @@
} }
.DashboardList-actionButton--edit:hover { .DashboardList-actionButton--edit:hover {
background-color: #337AB7; background-color: @default-link;
color: @default-bg; color: @default-bg;
border: 1px solid #337AB7; border: 1px solid @default-link;
} }
.DashboardList-noJobs { .DashboardList-noJobs {

View File

@@ -9,7 +9,7 @@
} }
.alert-success{ .alert-success{
background-color: #5CB85C; background-color: @default-succ;
color: @default-bg; color: @default-bg;
} }

View File

@@ -25,7 +25,7 @@
} }
.ScheduleToggle.is-on { .ScheduleToggle.is-on {
border-color: #337AB7; border-color: @default-link;
background-color: @default-bg; background-color: @default-bg;
} }