Skip to content

Commit

Permalink
Fixed list items being wider than desired in the default theme.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhnomoli committed Jul 27, 2014
1 parent cc6e7f5 commit bbabff9
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 0 deletions.
8 changes: 8 additions & 0 deletions mynt/themes/dark/_assets/css/_sass/screen.sass
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ li
ol > &
left: 22px

margin-right: 22px

counter-increment: item

&:before
Expand All @@ -139,16 +141,22 @@ li
ul > &
left: 12px

margin-right: 12px

&:before
left: -12px

content: '\2022'

ul.unstyled > &
position: static
left: auto

margin-right: 0px

&:before
position: static
left: auto

content: none

Expand Down
5 changes: 5 additions & 0 deletions mynt/themes/dark/_assets/css/screen.css
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ ol > li:before, ul > li:before {
}
ol > li {
left: 22px;
margin-right: 22px;
counter-increment: item;
}
ol > li:before {
Expand All @@ -130,16 +131,20 @@ ol > li:before {
}
ul > li {
left: 12px;
margin-right: 12px;
}
ul > li:before {
left: -12px;
content: "\2022";
}
ul.unstyled > li, #nav > li, #breadcrumbs > li {
position: static;
left: auto;
margin-right: 0px;
}
ul.unstyled > li:before, #nav > li:before, #breadcrumbs > li:before {
position: static;
left: auto;
content: none;
}

Expand Down
8 changes: 8 additions & 0 deletions mynt/themes/light/_assets/css/_sass/screen.sass
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ li
ol > &
left: 22px

margin-right: 22px

counter-increment: item

&:before
Expand All @@ -139,16 +141,22 @@ li
ul > &
left: 12px

margin-right: 12px

&:before
left: -12px

content: '\2022'

ul.unstyled > &
position: static
left: auto

margin-right: 0px

&:before
position: static
left: auto

content: none

Expand Down
5 changes: 5 additions & 0 deletions mynt/themes/light/_assets/css/screen.css
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ ol > li:before, ul > li:before {
}
ol > li {
left: 22px;
margin-right: 22px;
counter-increment: item;
}
ol > li:before {
Expand All @@ -130,16 +131,20 @@ ol > li:before {
}
ul > li {
left: 12px;
margin-right: 12px;
}
ul > li:before {
left: -12px;
content: "\2022";
}
ul.unstyled > li, #nav > li, #breadcrumbs > li {
position: static;
left: auto;
margin-right: 0px;
}
ul.unstyled > li:before, #nav > li:before, #breadcrumbs > li:before {
position: static;
left: auto;
content: none;
}

Expand Down

0 comments on commit bbabff9

Please sign in to comment.