mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 00:32:42 +01:00
Highlight strong tag in document headers
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
This commit is contained in:
parent
eb73c50e87
commit
cd6b284678
3 changed files with 10 additions and 5 deletions
|
@ -9,7 +9,7 @@ return array(
|
|||
'names' => array(
|
||||
'conpherence.pkg.css' => '6875302f',
|
||||
'conpherence.pkg.js' => '6249a1cf',
|
||||
'core.pkg.css' => '52a77c4d',
|
||||
'core.pkg.css' => '4cdcf76d',
|
||||
'core.pkg.js' => '1fa7c0c5',
|
||||
'darkconsole.pkg.js' => 'e7393ebb',
|
||||
'differential.pkg.css' => '90b30783',
|
||||
|
@ -108,7 +108,7 @@ return array(
|
|||
'rsrc/css/application/tokens/tokens.css' => '3d0f239e',
|
||||
'rsrc/css/application/uiexample/example.css' => '528b19de',
|
||||
'rsrc/css/core/core.css' => '9f4cb463',
|
||||
'rsrc/css/core/remarkup.css' => '4a2de2bb',
|
||||
'rsrc/css/core/remarkup.css' => '2d793c5b',
|
||||
'rsrc/css/core/syntax.css' => '769d3498',
|
||||
'rsrc/css/core/z-index.css' => '5e72c4e0',
|
||||
'rsrc/css/diviner/diviner-shared.css' => '896f1d43',
|
||||
|
@ -145,7 +145,7 @@ return array(
|
|||
'rsrc/css/phui/phui-document-summary.css' => '9ca48bdf',
|
||||
'rsrc/css/phui/phui-document.css' => 'c32e8dec',
|
||||
'rsrc/css/phui/phui-feed-story.css' => '44a9c8e9',
|
||||
'rsrc/css/phui/phui-fontkit.css' => '0b2da2d5',
|
||||
'rsrc/css/phui/phui-fontkit.css' => 'b78a0059',
|
||||
'rsrc/css/phui/phui-form-view.css' => 'adca31ce',
|
||||
'rsrc/css/phui/phui-form.css' => '5815af7b',
|
||||
'rsrc/css/phui/phui-head-thing.css' => 'fd311e5f',
|
||||
|
@ -805,7 +805,7 @@ return array(
|
|||
'phabricator-object-selector-css' => '85ee8ce6',
|
||||
'phabricator-phtize' => 'd254d646',
|
||||
'phabricator-prefab' => '8d40ae75',
|
||||
'phabricator-remarkup-css' => '4a2de2bb',
|
||||
'phabricator-remarkup-css' => '2d793c5b',
|
||||
'phabricator-search-results-css' => '64ad079a',
|
||||
'phabricator-shaped-request' => '7cbe244b',
|
||||
'phabricator-slowvote-css' => 'a94b7230',
|
||||
|
@ -857,7 +857,7 @@ return array(
|
|||
'phui-document-view-pro-css' => 'f56738ed',
|
||||
'phui-feed-story-css' => '44a9c8e9',
|
||||
'phui-font-icon-base-css' => '870a7360',
|
||||
'phui-fontkit-css' => '0b2da2d5',
|
||||
'phui-fontkit-css' => 'b78a0059',
|
||||
'phui-form-css' => '5815af7b',
|
||||
'phui-form-view-css' => 'adca31ce',
|
||||
'phui-head-thing-view-css' => 'fd311e5f',
|
||||
|
|
|
@ -272,6 +272,7 @@ video.phabricator-media {
|
|||
|
||||
.phabricator-remarkup .phriction-link-missing {
|
||||
color: {$red};
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.phabricator-remarkup .phriction-link-lock {
|
||||
|
|
|
@ -34,3 +34,7 @@
|
|||
padding: 0 24px 8px 0;
|
||||
margin: 32px 0 4px;
|
||||
}
|
||||
|
||||
.phui-document-view .phabricator-remarkup .remarkup-header strong {
|
||||
color: #586BE9;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue