Skip to content

Commit 07e8cfa

Browse files
committed
Resolve bug where list-view-item top border disappeared
Caused by backward incompatible changes in PatternFly v3.12+. Resolves #1283 Note: we’ll likely replace the instance using this LESS/CSS on the Monitoring page with the new list-pf, but until then, this fixes the bug.
1 parent 29ee6fc commit 07e8cfa

File tree

2 files changed

+27
-24
lines changed

2 files changed

+27
-24
lines changed

app/styles/_list-view.less

+21-19
Original file line numberDiff line numberDiff line change
@@ -44,25 +44,6 @@
4444
}
4545
}
4646

47-
.list-group-item-expandable {
48-
cursor: pointer;
49-
border: 1px solid #eaeaea;
50-
border-left-color: transparent;
51-
border-right-color: transparent;
52-
&.expanded {
53-
border-color: @table-border-color;
54-
&, &:hover {
55-
background-color: @list-view-expanded-bg;
56-
}
57-
.list-view-pf-checkbox {
58-
border-right-color: @table-border-color;
59-
}
60-
}
61-
.list-group-item-heading {
62-
white-space: normal;
63-
}
64-
}
65-
6647
.list-group-item-text, .list-view-pf-additional-info {
6748
.fa, .pficon {
6849
font-size: @font-size-base;
@@ -75,6 +56,27 @@
7556
h2 + & {
7657
margin-top: 20px;
7758
}
59+
.list-group-item:first-child {
60+
border-top-color: #eaeaea;
61+
}
62+
.list-group-item-expandable {
63+
cursor: pointer;
64+
border: 1px solid #eaeaea;
65+
border-left-color: transparent;
66+
border-right-color: transparent;
67+
&.expanded {
68+
border-color: @table-border-color;
69+
&, &:hover {
70+
background-color: @list-view-expanded-bg;
71+
}
72+
.list-view-pf-checkbox {
73+
border-right-color: @table-border-color;
74+
}
75+
}
76+
.list-group-item-heading {
77+
white-space: normal;
78+
}
79+
}
7880
.list-group-item-heading {
7981
font-size: @font-size-base;
8082
small {

dist/styles/main.css

+6-5
Original file line numberDiff line numberDiff line change
@@ -4164,14 +4164,15 @@ copy-to-clipboard .input-group.limit-width{max-width:300px}
41644164
.list-group-item{padding-left:10px;padding-right:10px}
41654165
.list-view-pf-checkbox{border-right-color:#ddd;font-size:22px;margin-bottom:10px;margin-top:10px;width:25px}
41664166
.list-view-pf-checkbox a{color:#555}
4167-
.list-group-item-expandable{cursor:pointer;border:1px solid #eaeaea;border-left-color:transparent;border-right-color:transparent}
4168-
.list-group-item-expandable.expanded{border-color:#d1d1d1}
4169-
.list-group-item-expandable.expanded,.list-group-item-expandable.expanded:hover{background-color:#f5f5f5}
4170-
.list-group-item-expandable.expanded .list-view-pf-checkbox{border-right-color:#d1d1d1}
4171-
.list-group-item-expandable .list-group-item-heading{white-space:normal}
41724167
.list-group-item-text .fa,.list-group-item-text .pficon,.list-view-pf-additional-info .fa,.list-view-pf-additional-info .pficon{font-size:13px;margin-right:3px}
41734168
.list-view-pf{margin-bottom:50px}
41744169
h2+.list-view-pf{margin-top:20px}
4170+
.list-view-pf .list-group-item:first-child{border-top-color:#eaeaea}
4171+
.list-view-pf .list-group-item-expandable{cursor:pointer;border:1px solid #eaeaea;border-left-color:transparent;border-right-color:transparent}
4172+
.list-view-pf .list-group-item-expandable.expanded{border-color:#d1d1d1}
4173+
.list-view-pf .list-group-item-expandable.expanded,.list-view-pf .list-group-item-expandable.expanded:hover{background-color:#f5f5f5}
4174+
.list-view-pf .list-group-item-expandable.expanded .list-view-pf-checkbox{border-right-color:#d1d1d1}
4175+
.list-view-pf .list-group-item-expandable .list-group-item-heading{white-space:normal}
41754176
.list-view-pf .list-group-item-heading{font-size:13px}
41764177
.list-view-pf .list-group-item-heading small{overflow:hidden;text-overflow:ellipsis;color:#9c9c9c}
41774178
.list-view-pf .list-group-item-text{margin-bottom:5px}

0 commit comments

Comments
 (0)