Skip to content

Commit

Permalink
Fix IE8 focus styles for dashed contents items
Browse files Browse the repository at this point in the history
Focus styles on IE8 and older include the left margin, creating an odd
white box with orange border around the em dash. Use inline-block and
vertical alignment to fix focus styles.

#420 (comment)
0632386
  • Loading branch information
fofr committed Aug 7, 2017
1 parent 5e3ae21 commit d4c2044
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/assets/stylesheets/components/_contents-list.scss
Expand Up @@ -39,6 +39,18 @@
content: "";
margin-left: -$contents-spacing;
}

// Focus styles on IE8 and older include the
// left margin, creating an odd white box with
// orange border around the em dash.
// Use inline-block and vertical alignment to
// fix focus styles
//
// https://github.com/alphagov/government-frontend/pull/420#issuecomment-320632386
.lte-ie8 & .app-c-contents-list__link {
display: inline-block;
vertical-align: top;
}
}

.app-c-contents-list__list-item--numbered {
Expand Down

0 comments on commit d4c2044

Please sign in to comment.