Skip to content

Commit

Permalink
AR-1724 show a delightful grey line when you get to the end of the in…
Browse files Browse the repository at this point in the history
…finite record rainbow
  • Loading branch information
payten authored and marktriggs committed Jun 19, 2017
1 parent 4853bc0 commit 5d0f4d6
Showing 1 changed file with 18 additions and 1 deletion.
Expand Up @@ -48,11 +48,11 @@ $indent-width: 20px;
}
.infinite-item {
background-color: #FFF;

@for $i from 2 through 12 {
&.infinite-item-indent-#{$i} {
margin-left: $indent-width * ($i - 1);
padding-left: $indent-width;
padding-bottom: 10px;
}
}
h3 {
Expand All @@ -61,6 +61,8 @@ $indent-width: 20px;

dl.dl-horizontal {
margin-top: 5px;
margin-bottom: 0;
padding-bottom: 10px;

dt {
text-align: left;
Expand All @@ -73,4 +75,19 @@ $indent-width: 20px;
line-height: 1.2em;
}
}
}

.waypoint:last-child {
.infinite-record-record:last-child {
&:after {
content: '';
border-bottom: 5px solid #CCC;
width: 90%;
left: 5%;
display: block;
padding-top: 40px;
background: #FFF;
position: absolute;
}
}
}

0 comments on commit 5d0f4d6

Please sign in to comment.