Skip to content

Commit

Permalink
fix(OrderedList): li third level margin left - refs #155248
Browse files Browse the repository at this point in the history
  • Loading branch information
avoinea committed Sep 30, 2022
1 parent cf3b0bb commit fba5cb9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions theme/themes/eea/elements/list.overrides
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,13 @@ ul.ui.list li:before {
}

// Third layer margin fix
.ui.ordered.list .list .list > .item:before {
.ui.ordered.list .list .list > .item:before,
.ui.ordered.list .list .list > li:before {
margin-left: @orderedGrandchildCountOffset;
}

// Fourth layer margin fix
.ui.ordered.list .list .list .list > .item:before {
.ui.ordered.list .list .list .list > .item:before,
.ui.ordered.list .list .list .list > li:before {
margin-left: @orderedGreatGrandchildCountOffset;
}

0 comments on commit fba5cb9

Please sign in to comment.