Skip to content

Commit ea000b8

Browse files
committed
Add 'list-view-pf-view' class to list view main div. Fix #443
1 parent 22eb250 commit ea000b8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

misc/examples.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ hr {
4646
height: 100%;
4747
width: 100%;
4848
overflow-y: auto;
49+
background-color: #fff;
4950
}
5051

5152
.list-view-container {

src/views/listview/list-view.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<span>
2-
<div class="list-group list-view-pf"
2+
<div class="list-group list-view-pf list-view-pf-view"
33
dnd-list="$ctrl.items"
44
ng-class="{'list-view-pf-dnd': $ctrl.config.dragEnabled === true}"
55
ng-if="$ctrl.config.itemsAvailable !== false">
@@ -25,7 +25,7 @@
2525
<div class="list-view-pf-checkbox" ng-if="$ctrl.config.showSelectBox" >
2626
<input type="checkbox" value="item.selected" ng-model="item.selected" ng-disabled="$ctrl.checkDisabled(item)" ng-change="$ctrl.checkBoxChange(item)"/>
2727
</div>
28-
28+
2929
<div class="list-view-pf-actions"
3030
ng-if="($ctrl.actionButtons && $ctrl.actionButtons.length > 0) || ($ctrl.menuActions && $ctrl.menuActions.length > 0)">
3131
<button class="btn btn-default {{actionButton.class}}" ng-repeat="actionButton in $ctrl.actionButtons"

0 commit comments

Comments
 (0)