Merge pull request #99 from joefiorini/inventory-remove-checkbox

Remove checkbox on inventory list for enabling/disabling
This commit is contained in:
Joe Fiorini
2015-03-11 14:42:04 -04:00
6 changed files with 30 additions and 18 deletions

View File

@@ -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 */

View 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");
}
}