mirror of
https://github.com/ansible/awx.git
synced 2026-01-16 12:20:45 -03:30
change hard-coded color hexes to LESS vars
This commit is contained in:
parent
b5d0fb256f
commit
6bbc6024e7
@ -1,7 +1,9 @@
|
||||
/** @define DashboardCounts */
|
||||
@import "awx/ui/client/src/shared/branding/colors.default.less";
|
||||
|
||||
.Footer {
|
||||
height: 40px;
|
||||
background-color: #f6f6f6;
|
||||
background-color: @default-no-items-bord;
|
||||
color: #848992;
|
||||
width: 100%;
|
||||
z-index: 1040;
|
||||
|
||||
@ -16,7 +16,7 @@
|
||||
.SchedulerFormDetail-errorText {
|
||||
text-align: center;
|
||||
margin-bottom: 0px;
|
||||
color: #ff5850;
|
||||
color: @default-err;
|
||||
}
|
||||
|
||||
.SchedulerFormDetail-label {
|
||||
|
||||
@ -1,10 +1,12 @@
|
||||
@import "awx/ui/client/src/shared/branding/colors.default.less";
|
||||
|
||||
@active-color: #EDF2F2; // #c6e5e5;
|
||||
@black: #171717;
|
||||
@blue: #1778c3; /* logo blue */
|
||||
@blue-link: #1778c3;
|
||||
@blue-dark: #2a6496; /* link hover */
|
||||
@grey: #A9A9A9;
|
||||
@grey-txt: #707070;
|
||||
@grey-txt: @default-as-detail-txt;
|
||||
@grey-border: #DDDDDD;
|
||||
@info: #d9edf7; /* alert info background color */
|
||||
@info-border: #bce8f1; /* alert info border color */
|
||||
@ -27,8 +29,8 @@
|
||||
|
||||
@tip-background: #0088CC;
|
||||
@tip-color: #fff;
|
||||
@green: #3cb878;
|
||||
@red: #ff5850;
|
||||
@red-hover: #FA8C87;
|
||||
@red-focus: #FF1105;
|
||||
@ansible-red: #FF5850;
|
||||
@green: @default-succ;
|
||||
@red: @default-err;
|
||||
@red-hover: @default-err-hov;
|
||||
@red-focus: @default-err-hov;
|
||||
@ansible-red: @default-err;
|
||||
|
||||
@ -38,7 +38,7 @@
|
||||
}
|
||||
|
||||
.SmartStatus-tooltip--success{
|
||||
color: #3cb878;
|
||||
color: @default-succ;
|
||||
padding-left: 5px;
|
||||
padding-right: 0px;
|
||||
text-shadow:
|
||||
@ -50,7 +50,7 @@
|
||||
}
|
||||
|
||||
.SmartStatus-tooltip--failed{
|
||||
color: #ff5850;
|
||||
color: @default-err;
|
||||
padding-left: 5px;
|
||||
padding-right: 0px;
|
||||
text-shadow:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user