Merge pull request #221 from SkullMasher/master
Fix l'overflow de la décoration du blockquote.
This commit is contained in:
commit
5d7ce42692
3 changed files with 9 additions and 5 deletions
|
@ -659,7 +659,8 @@ sub {
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-left: 3em; }
|
padding-left: 3em;
|
||||||
|
min-height: 2em; }
|
||||||
|
|
||||||
blockquote::before {
|
blockquote::before {
|
||||||
content: "\201C";
|
content: "\201C";
|
||||||
|
@ -668,7 +669,8 @@ blockquote::before {
|
||||||
top: 0;
|
top: 0;
|
||||||
font-family: georgia, serif;
|
font-family: georgia, serif;
|
||||||
font-size: 5em;
|
font-size: 5em;
|
||||||
line-height: 0.9;
|
height: .4em;
|
||||||
|
line-height: .9;
|
||||||
color: rgba(0, 0, 0, 0.3); }
|
color: rgba(0, 0, 0, 0.3); }
|
||||||
|
|
||||||
blockquote > footer {
|
blockquote > footer {
|
||||||
|
@ -906,6 +908,7 @@ input[type="reset"].unstyled {
|
||||||
flex-direction: row-reverse; }
|
flex-direction: row-reverse; }
|
||||||
.o-media-figure--center {
|
.o-media-figure--center {
|
||||||
-ms-flex-item-align: center;
|
-ms-flex-item-align: center;
|
||||||
|
-ms-grid-row-align: center;
|
||||||
align-self: center; } }
|
align-self: center; } }
|
||||||
|
|
||||||
/* Autogrid object */
|
/* Autogrid object */
|
||||||
|
@ -1796,7 +1799,6 @@ ul.unstyled {
|
||||||
.pull {
|
.pull {
|
||||||
margin-right: auto !important; }
|
margin-right: auto !important; }
|
||||||
|
|
||||||
/* Grid order */
|
|
||||||
.grid-item-first {
|
.grid-item-first {
|
||||||
-webkit-box-ordinal-group: 0;
|
-webkit-box-ordinal-group: 0;
|
||||||
-ms-flex-order: -1;
|
-ms-flex-order: -1;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -45,6 +45,7 @@ sub {
|
||||||
blockquote {
|
blockquote {
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-left: 3em;
|
padding-left: 3em;
|
||||||
|
min-height: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote::before {
|
blockquote::before {
|
||||||
|
@ -54,7 +55,8 @@ blockquote::before {
|
||||||
top: 0;
|
top: 0;
|
||||||
font-family: georgia, serif;
|
font-family: georgia, serif;
|
||||||
font-size: 5em;
|
font-size: 5em;
|
||||||
line-height: 0.9;
|
height: .4em;
|
||||||
|
line-height: .9;
|
||||||
color: rgba(0, 0, 0, .3);
|
color: rgba(0, 0, 0, .3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue