suppression de word-break sur les liens

This commit is contained in:
Raphael Goetter 2016-01-25 17:32:10 +01:00
parent d02430bc31
commit c6fd1278eb
6 changed files with 7 additions and 19 deletions

View File

@ -1725,9 +1725,6 @@ s,m,l,n = small, medium, large, none
-ms-hyphens: auto; -ms-hyphens: auto;
hyphens: auto; hyphens: auto;
} }
a {
word-break: break-all;
}
} }
@media (max-width: 640px) { @media (max-width: 640px) {
.no-wrapping { .no-wrapping {

File diff suppressed because one or more lines are too long

View File

@ -37,9 +37,6 @@
word-wrap: break-word; word-wrap: break-word;
hyphens: auto; hyphens: auto;
} }
a {
word-break: break-all;
}
} }
// use .no-wrapping to disallow hyphens on small screens // use .no-wrapping to disallow hyphens on small screens

View File

@ -37,9 +37,6 @@
word-wrap: break-word; word-wrap: break-word;
hyphens: auto; hyphens: auto;
} }
a {
word-break: break-all;
}
} }
// use .no-wrapping to disallow hyphens on small screens // use .no-wrapping to disallow hyphens on small screens

View File

@ -1893,27 +1893,24 @@ s,m,l,n = small, medium, large, none
pre, pre,
samp { samp {
word-wrap: break-word; word-wrap: break-word;
hyphens: auto; } hyphens: auto; } }
/* line 40, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */
a {
word-break: break-all; } }
@media (max-width: 640px) { @media (max-width: 640px) {
/* line 47, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */ /* line 44, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */
.no-wrapping { .no-wrapping {
word-wrap: normal; word-wrap: normal;
hyphens: manual; } } hyphens: manual; } }
/* Google Gmap3 bug fix on images */ /* Google Gmap3 bug fix on images */
/* line 54, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */ /* line 51, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */
.gm-style img { .gm-style img {
height: 100%; } height: 100%; }
/* line 58, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */ /* line 55, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */
:not(.gm-style) img { :not(.gm-style) img {
height: auto; } height: auto; }
/* line 64, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */ /* line 61, /Users/raphael/Documents/GitHub/KNACSS/sass/_09-misc.scss */
.gm-style img, .gm-style img,
.gmnoscreen img, .gmnoscreen img,
.gmnoprint img { .gmnoprint img {

File diff suppressed because one or more lines are too long