mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 01:57:35 -03:30
[system_tracking] Match button group colors to dashboard
This commit is contained in:
parent
0016744e1f
commit
419bc3dd1c
@ -1,5 +1,7 @@
|
||||
/** @define DashboardGraphs */
|
||||
|
||||
@import "shared/branding/colors.less";
|
||||
|
||||
.DashboardGraphs {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@ -16,13 +18,12 @@
|
||||
.DashboardGraphs-tab {
|
||||
flex: 1;
|
||||
padding: 10px;
|
||||
border-right: solid 1px #a9a9a9;
|
||||
border-bottom: solid 1px #a9a9a9;
|
||||
border-right: solid 1px @disabled-item-border;
|
||||
border-bottom: solid 1px @disabled-item-border;
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
background-color: #ccc;
|
||||
color: #545454;
|
||||
background-color: #EAEAEA;
|
||||
color: @disabled-item-text;
|
||||
background-color: @disabled-item-background;
|
||||
}
|
||||
|
||||
.DashboardGraphs-tab--firstTab {
|
||||
@ -40,8 +41,8 @@
|
||||
}
|
||||
|
||||
.DashboardGraphs-tab.is-selected {
|
||||
background-color: #fff;
|
||||
color: #000;
|
||||
background-color: @enabled-item-background;
|
||||
color: @enabled-item-text;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
@ -16,6 +16,14 @@
|
||||
@well-border: #e3e3e3;
|
||||
@white: #FFF;
|
||||
|
||||
@disabled-item-background: #eaeaea;
|
||||
@disabled-item-text: #545454;
|
||||
@disabled-item-border: #a9a9a9;
|
||||
|
||||
@enabled-item-background: #fff;
|
||||
@enabled-item-text: #000;
|
||||
@enabled-item-border: #a9a9a9;
|
||||
|
||||
@tip-background: #0088CC;
|
||||
@tip-color: #fff;
|
||||
@green: #60D66F;
|
||||
|
||||
@ -1,19 +1,28 @@
|
||||
/** @define FactModuleFilter */
|
||||
|
||||
@import "shared/branding/colors.less";
|
||||
|
||||
.FactModuleFilter {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
margin-bottom: 2.8rem;
|
||||
|
||||
&-module {
|
||||
|
||||
background-color: @disabled-item-background;
|
||||
color: @disabled-item-text;
|
||||
border-color: @disabled-item-border;
|
||||
|
||||
flex: 1 1 20%;
|
||||
@media screen and (max-width: 750px) {
|
||||
flex-basis: 50%;
|
||||
}
|
||||
&--isActive {
|
||||
// copied from bootstrap's .btn:focus
|
||||
background-color: #ebebeb;
|
||||
border-color: #adadad;
|
||||
background-color: @enabled-item-background;
|
||||
border-color: @enabled-item-border;
|
||||
color: @enabled-item-text;
|
||||
z-index: 2;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user