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