Gazette: Align quote icon to right when text is right aligned. See #594.

This commit is contained in:
Laurel Fulford 2019-02-15 15:17:14 -08:00
parent 1220d4202b
commit 4e68c8cd21
2 changed files with 18 additions and 0 deletions

View file

@ -49,6 +49,14 @@ p.has-drop-cap:not(:focus)::first-letter {
/* Quote */
.wp-block-quote[style*="text-align:right"]::before {
float: right;
}
.rtl .wp-block-quote[style*="text-align:left"]::before {
float: left;
}
/* Audio */
.wp-block-audio {

View file

@ -300,6 +300,11 @@ p.has-drop-cap:not(:focus)::first-letter {
width: 30px;
}
.wp-block-quote[style*="text-align:right"]:before,
.wp-block-quote[style*="text-align: right"]:before {
float: right;
}
.wp-block-quote .wp-block-quote__citation {
color: #555;
font-family: Lato, sans-serif;
@ -318,6 +323,11 @@ p.has-drop-cap:not(:focus)::first-letter {
float: right;
}
.rtl .wp-block-quote[style*="text-align:left"]:before,
.rtl .wp-block-quote[style*="text-align: left"]:before {
float: left;
}
/* Cover */