modify cursor style
This commit is contained in:
parent
f13a7d199e
commit
e1937fb0cb
|
@ -105,6 +105,10 @@ td {
|
|||
cursor: pointer !important;
|
||||
}
|
||||
|
||||
.text-cursor {
|
||||
cursor: text !important;
|
||||
}
|
||||
|
||||
.allow-word-break {
|
||||
word-wrap: break-word;
|
||||
word-break: break-all;
|
||||
|
|
|
@ -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>
|
||||
|
|
Reference in a new issue