2022-07-01 21:03:52 +03:00
|
|
|
// Overrides
|
|
|
|
/* Background */
|
|
|
|
.chroma {
|
|
|
|
overflow: hidden !important;
|
|
|
|
background-color: var(--lightgray) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* LineTable */
|
|
|
|
.chroma .lntable {
|
|
|
|
width: auto !important;
|
|
|
|
overflow: auto !important;
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* LineHighlight */
|
|
|
|
.chroma .hl {
|
|
|
|
display: block !important;
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* LineNumbersTable */
|
|
|
|
.chroma .lnt {
|
|
|
|
margin-right: 0.0em !important;
|
|
|
|
padding: 0 0.0em 0 0.0em !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* LineNumbers */
|
|
|
|
.chroma .ln {
|
|
|
|
margin-right: 0.0em !important;
|
|
|
|
padding: 0 0.0em 0 0.0em !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* GenericDeleted */
|
|
|
|
.chroma .gd {
|
|
|
|
color: #8b080b !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* GenericInserted */
|
|
|
|
.chroma .gi {
|
|
|
|
font-weight: bold !important;
|
|
|
|
}
|
2021-07-18 16:35:42 +03:00
|
|
|
|
|
|
|
.lntd:first-of-type > .chroma {
|
2022-07-01 21:03:52 +03:00
|
|
|
padding-right: 0 !important;
|
2021-07-18 16:35:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.chroma code {
|
2022-07-14 09:37:54 +03:00
|
|
|
font-family: var(--font-mono) !important;
|
2022-07-01 21:03:52 +03:00
|
|
|
font-size: 0.85em !important;
|
|
|
|
line-height: 2em !important;
|
|
|
|
background: none !important;
|
|
|
|
padding: 0 !important;
|
2021-07-18 16:35:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.chroma {
|
2022-07-01 21:03:52 +03:00
|
|
|
border-radius: 3px !important;
|
|
|
|
margin: 0 !important;
|
|
|
|
}
|
2022-07-13 00:37:10 +03:00
|
|
|
|
|
|
|
pre.chroma {
|
|
|
|
-moz-tab-size:4;-o-tab-size:4;tab-size:4;
|
|
|
|
}
|