Files
awx/awx/ui/static/less/text-label.less
2015-03-10 12:36:10 -04:00

23 lines
458 B
Plaintext

.include-text-label(@background-color; @color; @content) {
display: inline-block;
content: @content;
border-radius: 3px;
background-color: @background-color;
color: @color;
text-transform: uppercase;
font-size: .7em;
font-weight: bold;
font-style: normal;
margin-left: 0.5em;
padding: 0.35em;
padding-bottom: 0.2em;
line-height: 1.1;
}
.host-disabled-label {
&:after {
.include-text-label(#676767; white; "disabled");
}
}