modify cursor style
This commit is contained in:
parent
f13a7d199e
commit
e1937fb0cb
|
@ -105,6 +105,10 @@ td {
|
||||||
cursor: pointer !important;
|
cursor: pointer !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.text-cursor {
|
||||||
|
cursor: text !important;
|
||||||
|
}
|
||||||
|
|
||||||
.allow-word-break {
|
.allow-word-break {
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
|
|
|
@ -30,9 +30,9 @@
|
||||||
<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">
|
||||||
<div class="checkbox checkbox-primary checkbox-compact" ng-repeat="feature in context.serverStatus.enabledFeatures">
|
<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"/>
|
<input id="{{'feature_' + $index}}" type="checkbox" checked="checked" disabled="disabled" class="default-cursor"/>
|
||||||
<label for="{{'feature_' + $index}}">
|
<label for="{{'feature_' + $index}}" class="text-cursor">
|
||||||
<span ng-bind="feature"></span>
|
<span ng-bind="feature"></span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
Reference in a new issue