1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

Merge pull request #2890 from leigh-johnson/2855

Fix Inventory Manage > Hosts list disabled indicator style
This commit is contained in:
Leigh Johnson 2016-07-09 01:02:18 -04:00 committed by GitHub
commit d3926fa2e8

View File

@ -1,7 +1,17 @@
@import "src/shared/text-label.less";
@import "src/shared/branding/colors.default.less";
.host-disabled-label {
&:after {
.include-text-label(#676767; white; "disabled");
display: inline-block;
content: "disabled";
border-radius: 3px;
color: @default-icon;
text-transform: uppercase;
font-size: .7em;
font-style: normal;
margin-left: 0.5em;
padding: 0.35em;
padding-bottom: 0.2em;
line-height: 1.1;
}
}