modify cursor style

This commit is contained in:
MaysWind 2017-05-20 13:14:20 +08:00
parent f13a7d199e
commit e1937fb0cb
2 changed files with 7 additions and 3 deletions

View file

@ -105,6 +105,10 @@ td {
cursor: pointer !important;
}
.text-cursor {
cursor: text !important;
}
.allow-word-break {
word-wrap: break-word;
word-break: break-all;

View file

@ -30,9 +30,9 @@
<span translate>Enabled Features</span>
</div>
<div class="setting-value col-sm-8">
<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}}">
<div class="checkbox checkbox-primary checkbox-compact default-cursor" ng-repeat="feature in context.serverStatus.enabledFeatures">
<input id="{{'feature_' + $index}}" type="checkbox" checked="checked" disabled="disabled" class="default-cursor"/>
<label for="{{'feature_' + $index}}" class="text-cursor">
<span ng-bind="feature"></span>
</label>
</div>