optimize status page style
This commit is contained in:
parent
bac2551547
commit
530f391392
|
@ -42,10 +42,6 @@
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.settings-table .wholeline {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.settings-table .setting-value .form-group {
|
.settings-table .setting-value .form-group {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,6 +48,11 @@
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.checkbox-compact {
|
||||||
|
margin-top: 2px;
|
||||||
|
margin-bottom: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
/* angular-dragula extend */
|
/* angular-dragula extend */
|
||||||
.gu-mirror {
|
.gu-mirror {
|
||||||
cursor: grabbing;
|
cursor: grabbing;
|
||||||
|
|
|
@ -30,7 +30,12 @@
|
||||||
<span translate>Enabled Features</span>
|
<span translate>Enabled Features</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="setting-value col-sm-8">
|
<div class="setting-value col-sm-8">
|
||||||
<span class="wholeline" ng-repeat="feature in context.serverStatus.enabledFeatures" ng-bind="feature"></span>
|
<div class="checkbox checkbox-primary checkbox-compact" ng-repeat="feature in context.serverStatus.enabledFeatures">
|
||||||
|
<input id="{{'feature_' + $index}}" type="checkbox" checked="checked" disabled="disabled"/>
|
||||||
|
<label for="{{'feature_' + $index}}">
|
||||||
|
<span ng-bind="feature"></span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row ng-cloak" ng-if="context.serverStatus">
|
<div class="row ng-cloak" ng-if="context.serverStatus">
|
||||||
|
|
Reference in a new issue