|
6 | 6 | .list-view-pf { |
7 | 7 | .list-group-item { |
8 | 8 | align-items: flex-start; |
| 9 | + background-clip: padding-box; |
| 10 | + border-color: transparent #fff; |
| 11 | + border-style: solid; |
| 12 | + border-width: 1px; |
9 | 13 | @include clearfix; //IE9 fallback |
10 | 14 | display: flex; |
| 15 | + flex-wrap: wrap; |
11 | 16 | padding-bottom: 0; |
12 | 17 | padding-top: 0; |
| 18 | + &.list-view-pf-expand-active { |
| 19 | + background-color: $list-view-hover-bg; |
| 20 | + } |
13 | 21 | &.active { |
14 | 22 | color: $list-group-link-color; |
15 | 23 | background-color: $list-view-active-bg; |
| 24 | + background-clip: border-box; |
| 25 | + border-color: $color-pf-blue-300 transparent transparent; |
16 | 26 | z-index:auto; |
17 | 27 | } |
18 | 28 | &:hover { |
19 | 29 | background-color: $list-view-hover-bg; |
| 30 | + border-left-color: transparent; |
| 31 | + border-right-color: transparent; |
| 32 | + } |
| 33 | + &.list-view-pf-expand-active { |
| 34 | + border: solid 1px $list-group-active-border; |
| 35 | + &:first-child { |
| 36 | + border-top-color: $color-pf-blue-300; |
| 37 | + } |
| 38 | + } |
| 39 | + &:first-child { |
| 40 | + border-top: 1px solid transparent; |
20 | 41 | } |
21 | 42 | @media (min-width: $screen-md-min) { |
22 | 43 | align-items: center; |
|
230 | 251 | } |
231 | 252 | } |
232 | 253 | .list-view-pf-view { |
| 254 | + background: $list-group-top-border; |
| 255 | + border: none; |
233 | 256 | margin-top: 30px; |
234 | 257 | } |
| 258 | +.list-group-item-header { |
| 259 | + box-sizing: content-box; |
| 260 | + cursor: pointer; |
| 261 | + margin: 0 -15px; |
| 262 | + padding: 0 15px; //filling the width of the list item |
| 263 | + width: 100%; |
| 264 | +} |
| 265 | +.list-view-pf-expand { |
| 266 | + cursor: pointer; |
| 267 | + float: left; //IE9 fallback |
| 268 | + margin-bottom: ($grid-gutter-width/2); |
| 269 | + margin-right: 2px; |
| 270 | + margin-top: ($grid-gutter-width/2); |
| 271 | + padding: 3px 0; |
| 272 | + &.active, |
| 273 | + &:hover { |
| 274 | + color: $link-color; |
| 275 | + } |
| 276 | + .list-view-pf-additional-info-item & { |
| 277 | + margin: 0; |
| 278 | + padding: 0; |
| 279 | + } |
| 280 | + .fa-angle-right { |
| 281 | + cursor: pointer; |
| 282 | + font-size: ($font-size-large+3); |
| 283 | + margin-right: 5px; |
| 284 | + margin-top: 2px; |
| 285 | + width: 10px; |
| 286 | + } |
| 287 | +} |
| 288 | +.list-group-item-container { |
| 289 | + background: #fff; |
| 290 | + border-top: solid 1px $list-group-active-border; |
| 291 | + box-sizing: content-box; |
| 292 | + margin: -1px -15px 0; |
| 293 | + order: 3; |
| 294 | + padding: 10px 15px; |
| 295 | + position: relative; |
| 296 | + width: 100%; |
| 297 | +} |
0 commit comments