Skip to content

Commit

Permalink
Show checkmark when list has selection
Browse files Browse the repository at this point in the history
  • Loading branch information
nielslyngsoe committed Mar 19, 2019
1 parent e2b1f0a commit 532f69e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@

}

&.-has-selection {
.umb-user-table-row.-selectable {
.umb-checkmark {
visibility: visible;
}
}
}

.umb-user-table-row.-selectable:hover {
.umb-checkmark {
visibility: visible;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
<!-- Layout: Table -->
<div ng-if="vm.activeLayout.path === '2'">

<div class="umb-table umb-user-table">
<div class="umb-table umb-user-table" ng-class="{'-has-selection': vm.selection.length > 0}">
<div class="umb-table-head">
<div class="umb-table-row">
<div class="umb-table-cell" style="padding-left: 10px; width: 10px;">
Expand Down

0 comments on commit 532f69e

Please sign in to comment.