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