Skip to content

Commit

Permalink
modify cursor style
Browse files Browse the repository at this point in the history
  • Loading branch information
mayswind committed May 20, 2017
1 parent f13a7d1 commit e1937fb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/styles/core/core.css
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ td {
cursor: pointer !important;
}

.text-cursor {
cursor: text !important;
}

.allow-word-break {
word-wrap: break-word;
word-break: break-all;
Expand Down
6 changes: 3 additions & 3 deletions src/views/status.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit e1937fb

Please sign in to comment.