Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: static/css/features.css

Issue 29657623: Issue 6111 - Fix overflowing text on adblockplus.org/nl/features (Closed) Base URL: https://hg.adblockplus.org/web.adblockplus.org
Patch Set: Created Jan. 5, 2018, 10 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld