mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
cd6b284678
Summary: Fixes T12357. Adds some color to highlighted text in headers. Test Plan: == Header with **strong** copy == Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T12357 Differential Revision: https://secure.phabricator.com/D17469
40 lines
1.1 KiB
CSS
40 lines
1.1 KiB
CSS
/**
|
|
* @provides phui-fontkit-css
|
|
*/
|
|
|
|
/* - Roboto Slab ---------------------------------------------------------------
|
|
|
|
Used as Primary Headers in Object Boxes, Headers in Documents
|
|
|
|
*/
|
|
|
|
.diviner-document-section .phui-header-header {
|
|
font-family: 'Aleo', {$fontfamily};
|
|
color: #000;
|
|
}
|
|
|
|
.phui-document-view .phui-header-tall .phui-header-header {
|
|
font-family: 'Aleo', {$fontfamily};
|
|
}
|
|
|
|
.phui-document-view .phabricator-remarkup h1.remarkup-header,
|
|
.phui-document-view .phabricator-remarkup h2.remarkup-header,
|
|
.phui-document-view .phabricator-remarkup h3.remarkup-header,
|
|
.phui-document-view .phabricator-remarkup h4.remarkup-header,
|
|
.phui-document-view .phabricator-remarkup h5.remarkup-header,
|
|
.phui-document-view .phabricator-remarkup h6.remarkup-header {
|
|
font-family: 'Aleo', {$fontfamily};
|
|
}
|
|
|
|
.phui-document-view .phabricator-remarkup .remarkup-header {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.phui-document-view .phabricator-remarkup h2.remarkup-header {
|
|
padding: 0 24px 8px 0;
|
|
margin: 32px 0 4px;
|
|
}
|
|
|
|
.phui-document-view .phabricator-remarkup .remarkup-header strong {
|
|
color: #586BE9;
|
|
}
|