 Issue 29657623:
  Issue 6111 - Fix overflowing text on adblockplus.org/nl/features  (Closed) 
  Base URL: https://hg.adblockplus.org/web.adblockplus.org
    
  
    Issue 29657623:
  Issue 6111 - Fix overflowing text on adblockplus.org/nl/features  (Closed) 
  Base URL: https://hg.adblockplus.org/web.adblockplus.org| Index: static/css/features.css | 
| =================================================================== | 
| --- a/static/css/features.css | 
| +++ b/static/css/features.css | 
| @@ -47,8 +47,27 @@ | 
| { | 
| background-position: -114px -114px; | 
| } | 
| .topic .feature-tracking | 
| { | 
| background-position: -228px -114px; | 
| } | 
| + | 
| +/* Fix overflowing text in NL | 
| + */ | 
| + | 
| +[lang="nl"] .topic-small | 
| +{ | 
| + -ms-hyphens: auto; | 
| + -webkit-hyphens: auto; | 
| + hyphens: auto; | 
| +} | 
| + | 
| +/* Fix overflowing text in BG | 
| + * (auto-hyphenation not applicable) | 
| + */ | 
| + | 
| +[lang="bg"] .topic-small | 
| +{ | 
| + width: 130px; | 
| 
ire
2018/01/05 10:02:20
Auto-hyphenation wasn't working with BG. I decided
 
juliandoucette
2018/01/08 12:15:28
Acknowledged.
 | 
| +} |