Skip to content
This repository has been archived by the owner on Mar 25, 2023. It is now read-only.

Commit

Permalink
fix(vm-list-item): Tooltips in cards overlap (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
HeyRoach committed Aug 15, 2017
1 parent baac261 commit 5eca059
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app/vm/vm-list/vm-list-item.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
<md-card-title>
<h2
class="md-card-title-text"
[mdTooltip]="item.name"
>
<span
class="state-icon"
Expand All @@ -21,7 +20,9 @@
[class.in-progress]="item.state !== 'Running' && item.state !== 'Stopped'"
[mdTooltip]="item.state.toUpperCase() | translate"
></span>
{{ item.name }}
<span
[mdTooltip]="item.name"
> {{ item.name }} </span>
</h2>
</md-card-title>
<div class="md-card-header-menu">
Expand Down

0 comments on commit 5eca059

Please sign in to comment.