mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 02:01:54 +02:00
Merge pull request #1671 from ragibson/break-long-urls
Word break long urls in CSS to avoid overflowing site width
This commit is contained in:
commit
f29b2cf002
2 changed files with 15 additions and 0 deletions
|
@ -3353,6 +3353,14 @@ code {
|
||||||
/* Renamed property in CSS3 draft spec */
|
/* Renamed property in CSS3 draft spec */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Fix long URLs breaking out of article bounds on mobile */
|
||||||
|
|
||||||
|
a {
|
||||||
|
word-break: break-word;
|
||||||
|
word-wrap: break-word;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
/* -- Chroma Highlight -- */
|
/* -- Chroma Highlight -- */
|
||||||
|
|
||||||
/* Background */
|
/* Background */
|
||||||
|
|
|
@ -133,6 +133,13 @@ code {
|
||||||
overflow-wrap: break-word; /* Renamed property in CSS3 draft spec */
|
overflow-wrap: break-word; /* Renamed property in CSS3 draft spec */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Fix long URLs breaking out of article bounds on mobile */
|
||||||
|
a {
|
||||||
|
word-break: break-word;
|
||||||
|
word-wrap: break-word;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
/* -- Chroma Highlight -- */
|
/* -- Chroma Highlight -- */
|
||||||
/* Background */
|
/* Background */
|
||||||
.prose .chroma {
|
.prose .chroma {
|
||||||
|
|
Loading…
Add table
Reference in a new issue