Skip to content

Commit

Permalink
explicitly make record item links pointers, remove implicit if its an…
Browse files Browse the repository at this point in the history
… icon make it a pointer
  • Loading branch information
fredkingham committed Jul 19, 2016
1 parent 49b4ffd commit 895da14
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion opal/static/css/opal.css
Expand Up @@ -351,7 +351,6 @@ i.delete,



.panel-heading i:hover,
.detail .list-group-item i:hover { cursor: pointer; }
.detail .list-group-item i.delete:hover { cursor: pointer; color: rgb(169, 68, 66); }
.list-group-item { min-height: 50px; }
Expand Down
6 changes: 3 additions & 3 deletions opal/templates/_helpers/record_panel.html
Expand Up @@ -13,10 +13,10 @@ <h3>
<i class="{{ icon }}"></i> {{ title }}
<span ng-show="{{ editable }}" >
{% if singleton %}
<i class="fa fa-pencil edit pull-right"
<i class="fa fa-pencil edit pull-right pointer"
ng-click="parent.recordEditor.editItem('{{ name }}', 0)"></i>
{% else %}
<i class="fa fa-plus-circle edit pull-right"
<i class="fa fa-plus-circle edit pull-right pointer"
ng-click="parent.recordEditor.newItem('{{ name }}')"></i>
{% endif %}
</span>
Expand All @@ -41,7 +41,7 @@ <h3>
<div class="col-md-3">
<span ng-show="{{ editable }}" >
{% if not singleton %}
<i class="fa fa-pencil edit pull-right"
<i class="fa fa-pencil edit pull-right pointer"
ng-click="parent.recordEditor.editItem('{{ name }}', $index)"></i>
{% endif %}
</span>
Expand Down

0 comments on commit 895da14

Please sign in to comment.