mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-10 23:01:04 +01:00
Give emphasized text an italic style inside normal-style headers inside italic-style blockquotes in Remarkup
Summary: Fixes T10686. Test Plan: {F1193658} Reviewers: chad Reviewed By: chad Maniphest Tasks: T10686 Differential Revision: https://secure.phabricator.com/D15532
This commit is contained in:
parent
dccce14621
commit
ef32061387
1 changed files with 8 additions and 0 deletions
|
@ -182,6 +182,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.phabricator-remarkup blockquote em {
|
.phabricator-remarkup blockquote em {
|
||||||
|
/* In blockquote bodies, default text is italic so emphasized text should
|
||||||
|
be normal. */
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -190,6 +192,12 @@
|
||||||
padding-bottom: 4px;
|
padding-bottom: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.phabricator-remarkup blockquote div.remarkup-reply-head em {
|
||||||
|
/* In blockquote headers, default text is normal so emphasized text should
|
||||||
|
be italic. See T10686. */
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
.phabricator-remarkup blockquote div.remarkup-reply-head
|
.phabricator-remarkup blockquote div.remarkup-reply-head
|
||||||
.phui-tag-core {
|
.phui-tag-core {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
|
Loading…
Reference in a new issue