1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
/**
* Customizations for GNOME Web
*
* This file provides epiphany-specific customizations to the upstream css.
*/
.hljs {
/*
* fix overflow handling
*
* let the browser window display overflow scrollbars, if any,
* instead of placing scrollbars inside the content
*/
overflow-x: visible;
}
/**
* styling for the highlightjs-line-numbers plugin
*/
.hljs-ln {
white-space: pre;
}
.hljs-ln .hljs-ln-numbers {
-webkit-user-select: none;
text-align: right;
color: #ccc;
vertical-align: top;
border-right: 1px solid;
padding-right: 5px;
}
.hljs-ln .hljs-ln-code {
padding-left: 10px;
}
|