mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-14 07:04:45 -04:00
61 lines
1.2 KiB
SCSS
61 lines
1.2 KiB
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
.markdown-body {
|
|
|
|
}
|
|
|
|
.markdown-body {
|
|
@import '../../../../../../node_modules/highlight.js/styles/github';
|
|
|
|
body.dark & {
|
|
@import '../../../../../../node_modules/highlight.js/styles/tomorrow-night';
|
|
}
|
|
|
|
code.hljs {
|
|
background-color: rgba(27, 31, 35, .05);
|
|
body.dark & {
|
|
background-color: rgb(27, 31, 35);
|
|
}
|
|
|
|
body.dark &, & {
|
|
padding: 16px;
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
|
|
&.showGutter {
|
|
.linenumber {
|
|
position: relative;
|
|
cursor: default;
|
|
z-index: 4;
|
|
padding: 0 8px 0 0;
|
|
min-width: 20px;
|
|
box-sizing: content-box;
|
|
color: #afafaf;
|
|
border-right: 3px solid #6ce26c;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
user-select: none;
|
|
|
|
display: flex;
|
|
align-items: flex-end;
|
|
|
|
&:before {
|
|
content: attr(data-line-number);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.showGutter .codeline {
|
|
margin: 0 0 0 16px;
|
|
}
|
|
|
|
&.wrapLines .codeline {
|
|
white-space: pre-wrap;
|
|
}
|
|
}
|
|
}
|
|
}
|