mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-22 07:51:52 -05:00
Merge pull request #99 from joefiorini/inventory-remove-checkbox
Remove checkbox on inventory list for enabling/disabling
This commit is contained in:
@@ -62,6 +62,7 @@
|
||||
@import "jPushMenu.less";
|
||||
@import "survey-maker.less";
|
||||
@import "portal.less";
|
||||
@import "text-label.less";
|
||||
|
||||
/* Bootstrap fix that's causing a right margin to appear
|
||||
whenver a modal is opened */
|
||||
|
||||
22
awx/ui/static/less/text-label.less
Normal file
22
awx/ui/static/less/text-label.less
Normal file
@@ -0,0 +1,22 @@
|
||||
.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");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user