1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Fix bg color and overflow for .highlight blocks

Thanks to @olleolleolle for the suggestion!
https://github.com/capistrano/capistrano/pull/1768#issuecomment-277459234
This commit is contained in:
Matt Brictson 2017-02-04 18:21:09 -08:00
parent f1584eda66
commit f906bb65c5
No known key found for this signature in database
GPG key ID: 2F279EAD1F2ACFAF

View file

@ -1,10 +1,17 @@
// A modified version of https://raw.githubusercontent.com/richleland/pygments-css/master/monokai.css
.highlighter-rouge {
background-color: #272822;
}
.highlight {
background: #272822;
padding: 1em;
font-size: 0.9em;
overflow: auto;
background: #272822;
padding: 1em;
font-size: 0.9em;
overflow: auto;
line-height: 150%;
overflow-y: auto;
overflow-x: scroll;
}
.highlight code {