 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| Left: | ||
| Right: | 
| OLD | NEW | 
|---|---|
| 1 #content .sprite | 1 #content .sprite | 
| 2 { | 2 { | 
| 3 background-image: url(../img/sprite-features.png); | 3 background-image: url(../img/sprite-features.png); | 
| 4 } | 4 } | 
| 5 | 5 | 
| 6 .topic-small .feature-adblocking | 6 .topic-small .feature-adblocking | 
| 7 { | 7 { | 
| 8 background-position: 0px -228px; | 8 background-position: 0px -228px; | 
| 9 } | 9 } | 
| 10 | 10 | 
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 45 | 45 | 
| 46 .topic .feature-socialmedia | 46 .topic .feature-socialmedia | 
| 47 { | 47 { | 
| 48 background-position: -114px -114px; | 48 background-position: -114px -114px; | 
| 49 } | 49 } | 
| 50 | 50 | 
| 51 .topic .feature-tracking | 51 .topic .feature-tracking | 
| 52 { | 52 { | 
| 53 background-position: -228px -114px; | 53 background-position: -228px -114px; | 
| 54 } | 54 } | 
| 55 | |
| 56 /* Fix overflowing text in NL | |
| 57 */ | |
| 58 | |
| 59 [lang="nl"] .topic-small | |
| 60 { | |
| 61 -ms-hyphens: auto; | |
| 62 -webkit-hyphens: auto; | |
| 63 hyphens: auto; | |
| 64 } | |
| 65 | |
| 66 /* Fix overflowing text in BG | |
| 67 * (auto-hyphenation not applicable) | |
| 68 */ | |
| 69 | |
| 70 [lang="bg"] .topic-small | |
| 71 { | |
| 72 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.
 | |
| 73 } | |
| OLD | NEW |