Fixed firefox list editing bug and made button text size more consistent
Fixes #77
Showing
2 changed files
with
11 additions
and
5 deletions
| ... | @@ -217,20 +217,22 @@ p.secondary, p .secondary, span.secondary, .text-secondary { | ... | @@ -217,20 +217,22 @@ p.secondary, p .secondary, span.secondary, .text-secondary { |
| 217 | span.highlight { | 217 | span.highlight { |
| 218 | //background-color: rgba($primary, 0.2); | 218 | //background-color: rgba($primary, 0.2); |
| 219 | font-weight: bold; | 219 | font-weight: bold; |
| 220 | - //padding: 2px 4px; | 220 | + padding: 2px 4px; |
| 221 | } | 221 | } |
| 222 | 222 | ||
| 223 | /* | 223 | /* |
| 224 | * Lists | 224 | * Lists |
| 225 | */ | 225 | */ |
| 226 | ul { | 226 | ul { |
| 227 | - padding-left: $-m * 1.5; | 227 | + padding-left: $-m * 1.3; |
| 228 | - list-style: disc inside; | 228 | + list-style: disc; |
| 229 | + overflow: hidden; | ||
| 229 | } | 230 | } |
| 230 | 231 | ||
| 231 | ol { | 232 | ol { |
| 232 | - list-style: decimal inside; | 233 | + list-style: decimal; |
| 233 | - padding-left: $-m * 1.5; | 234 | + padding-left: $-m * 1.3; |
| 235 | + overflow: hidden; | ||
| 234 | } | 236 | } |
| 235 | 237 | ||
| 236 | /* | 238 | /* | ... | ... |
-
Please register or sign in to post a comment