mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-29 19:31:48 -05:00
23 lines
458 B
Plaintext
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");
|
|
}
|
|
}
|