mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 04:42:40 +01:00
Provide clearer syntax highlighting for phame posts. Including background colour, overflow scrolling and border. Also support for tt tag differentiation
Summary: Clode blocks are now much clearer in blog posts with the usage of a bg color, border and scrolling for overflowing content Test Plan: Create a phame post with a code block and see the visual difference Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin, chad Differential Revision: https://secure.phabricator.com/D6320
This commit is contained in:
parent
97de022ae4
commit
66450698ba
1 changed files with 13 additions and 0 deletions
13
externals/skins/oblivious/css/oblivious.css
vendored
13
externals/skins/oblivious/css/oblivious.css
vendored
|
@ -69,6 +69,19 @@ h2 {
|
||||||
margin: 0 0 1em;
|
margin: 0 0 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.phame-post tt {
|
||||||
|
color: #333333;
|
||||||
|
background: #ebebeb;
|
||||||
|
padding: 0 .25em;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.phame-post .remarkup-code-block pre {
|
||||||
|
overflow: auto;
|
||||||
|
padding: 10px 10px;
|
||||||
|
border: 1px solid #dfdfdf;
|
||||||
|
background-color: #f8f8f8;
|
||||||
|
}
|
||||||
|
|
||||||
.fb-comments,
|
.fb-comments,
|
||||||
.fb-comments span,
|
.fb-comments span,
|
||||||
|
|
Loading…
Reference in a new issue