mirror of
https://github.com/ansible/awx.git
synced 2026-03-11 06:29:31 -02:30
color fixing based on login modal
This commit is contained in:
committed by
Leigh Johnson
parent
dc3394258a
commit
a57faafced
@@ -58,12 +58,12 @@ function JobStatusGraph($rootScope, $compile , $location, $window, Wait, adjustG
|
|||||||
scope.status = status;
|
scope.status = status;
|
||||||
|
|
||||||
var timeFormat, graphData = [
|
var timeFormat, graphData = [
|
||||||
{ "color": "#3CB878",
|
{ "color": "#5CB85C",
|
||||||
"key": "SUCCESSFUL",
|
"key": "SUCCESSFUL",
|
||||||
"values": data.jobs.successful
|
"values": data.jobs.successful
|
||||||
},
|
},
|
||||||
{ "key" : "FAILED" ,
|
{ "key" : "FAILED" ,
|
||||||
"color" : "#ff5850",
|
"color" : "#D9534F",
|
||||||
"values": data.jobs.failed
|
"values": data.jobs.failed
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -145,9 +145,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.DashboardList-actionButton--edit:hover {
|
.DashboardList-actionButton--edit:hover {
|
||||||
background-color: #1678c4;
|
background-color: #337AB7;
|
||||||
color: @default-bg;
|
color: @default-bg;
|
||||||
border: 1px solid #1678c4;
|
border: 1px solid #337AB7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.DashboardList-noJobs {
|
.DashboardList-noJobs {
|
||||||
|
|||||||
@@ -955,7 +955,7 @@ export default
|
|||||||
graph_data.push({
|
graph_data.push({
|
||||||
label: 'FAILED',
|
label: 'FAILED',
|
||||||
value: count.failures.length,
|
value: count.failures.length,
|
||||||
color: '#ff5850'
|
color: '#D9534F'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
DonutChart({
|
DonutChart({
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
.MgmtCards-card--selected {
|
.MgmtCards-card--selected {
|
||||||
padding-left: 16px;
|
padding-left: 16px;
|
||||||
border-left: 5px solid #1678C4;
|
border-left: 5px solid #337AB7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.MgmtCards-header {
|
.MgmtCards-header {
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.alert-success{
|
.alert-success{
|
||||||
background-color: #3cb878;
|
background-color: #5CB85C;
|
||||||
color: @default-bg;
|
color: @default-bg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
.OrgCards-card--selected {
|
.OrgCards-card--selected {
|
||||||
padding-left: 16px;
|
padding-left: 16px;
|
||||||
border-left: 5px solid #1678C4;
|
border-left: 5px solid #337AB7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.OrgCards-header {
|
.OrgCards-header {
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ScheduleToggle.is-on {
|
.ScheduleToggle.is-on {
|
||||||
border-color: #1678c4;
|
border-color: #337AB7;
|
||||||
background-color: @default-bg;
|
background-color: @default-bg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,13 +8,13 @@
|
|||||||
@default-bg: #FFFFFF; // also selected btn txt
|
@default-bg: #FFFFFF; // also selected btn txt
|
||||||
@default-secondary-bg: #FCFCFC; // page/input field bg, just adds depth
|
@default-secondary-bg: #FCFCFC; // page/input field bg, just adds depth
|
||||||
@default-tertiary-bg: #FAFAFA; // hover bg, alt-list
|
@default-tertiary-bg: #FAFAFA; // hover bg, alt-list
|
||||||
@default-err: #D9534F; // used to be FF5850
|
@default-err: #D9534F;
|
||||||
@default-err-hov: #C9302C; // used to be FF1105
|
@default-err-hov: #C9302C;
|
||||||
@default-succ: #3CB878; //used to be 3CB878
|
@default-succ: #5CB85C;
|
||||||
@default-succ-hov: #449D44; //used to be 60D66F
|
@default-succ-hov: #449D44;
|
||||||
@default-succ-disabled: #D7D7D7; // no different than other disableds...remove sometime
|
@default-succ-disabled: #D7D7D7; // no different than other disableds...remove sometime
|
||||||
@default-link: #337AB7; // used to be 1678C4
|
@default-link: #337AB7;
|
||||||
@default-link-hov: #286090; // used to be 4498DA
|
@default-link-hov: #286090;
|
||||||
@default-list-header-bg:#EBEBEB;
|
@default-list-header-bg:#EBEBEB;
|
||||||
@default-no-items-bord: #F6F6F6; // also white button hovers
|
@default-no-items-bord: #F6F6F6; // also white button hovers
|
||||||
@default-stdout-txt: #707070;
|
@default-stdout-txt: #707070;
|
||||||
@@ -106,7 +106,7 @@
|
|||||||
// forms
|
// forms
|
||||||
@field-label: @default-interface-txt;
|
@field-label: @default-interface-txt;
|
||||||
@field-input-text: @default-data-txt;
|
@field-input-text: @default-data-txt;
|
||||||
@field-bg: @default-tertiary-bg;
|
@field-bg: @default-secondary-bg;
|
||||||
@field-secondary-bg: @default-secondary-bg;
|
@field-secondary-bg: @default-secondary-bg;
|
||||||
@field-border: @d7grey;
|
@field-border: @d7grey;
|
||||||
@field-border-sel: @default-link;
|
@field-border-sel: @default-link;
|
||||||
|
|||||||
Reference in New Issue
Block a user