Skip to content

Commit

Permalink
Use rgb color values for Markdown quote styling
Browse files Browse the repository at this point in the history
Workaround as using hex values for colors starting with # introduces
unwanted side effects.

Fixes #24233
  • Loading branch information
atrol committed Apr 13, 2018
1 parent 8fd2701 commit 88913cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/MantisCoreFormatting/core/MantisMarkdown.php
Expand Up @@ -169,7 +169,7 @@ private function __quote( $line, $block, $fn ) {

if( $block = call_user_func( 'parent::' . $fn, $line, $block ) ) {
# TODO: To open another issue to track css style sheet issue vs. inline style.
$block['element']['attributes']['style'] = 'padding:0.13em 1em;color:#777;border-left:0.25em solid #C0C0C0;font-size:13px;';
$block['element']['attributes']['style'] = 'padding:0.13em 1em;color:rgb(119,119,119);border-left:0.25em solid #C0C0C0;font-size:13px;';
}

return $block;
Expand Down

0 comments on commit 88913cb

Please sign in to comment.