Merge pull request #221 from SkullMasher/master

Fix l'overflow de la décoration du blockquote.
This commit is contained in:
Raphael Goetter 2016-11-10 16:24:24 +01:00 committed by GitHub
commit 5d7ce42692
3 changed files with 9 additions and 5 deletions

View File

@ -659,7 +659,8 @@ sub {
blockquote {
position: relative;
padding-left: 3em; }
padding-left: 3em;
min-height: 2em; }
blockquote::before {
content: "\201C";
@ -668,7 +669,8 @@ blockquote::before {
top: 0;
font-family: georgia, serif;
font-size: 5em;
line-height: 0.9;
height: .4em;
line-height: .9;
color: rgba(0, 0, 0, 0.3); }
blockquote > footer {
@ -906,6 +908,7 @@ input[type="reset"].unstyled {
flex-direction: row-reverse; }
.o-media-figure--center {
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center; } }
/* Autogrid object */
@ -1796,7 +1799,6 @@ ul.unstyled {
.pull {
margin-right: auto !important; }
/* Grid order */
.grid-item-first {
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;

File diff suppressed because one or more lines are too long

View File

@ -45,6 +45,7 @@ sub {
blockquote {
position: relative;
padding-left: 3em;
min-height: 2em;
}
blockquote::before {
@ -54,7 +55,8 @@ blockquote::before {
top: 0;
font-family: georgia, serif;
font-size: 5em;
line-height: 0.9;
height: .4em;
line-height: .9;
color: rgba(0, 0, 0, .3);
}