0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-19 05:32:42 +00:00

Merge pull request #1586 from Gazook89/CodeMirror-Page-Break-Style-Tweak

Update editor.less for .pageLine
This commit is contained in:
Trevor Buckner
2021-09-29 21:00:00 -04:00
committed by GitHub

View File

@@ -5,9 +5,17 @@
.codeEditor{ .codeEditor{
height : 100%; height : 100%;
counter-reset : page;
counter-increment : page;
.pageLine{ .pageLine{
background-color : fade(#333, 15%); background : #33333328;
border-bottom : #333 solid 1px; border-top : #339 solid 1px;
&:after{
content : counter(page);
counter-increment : page;
float : right;
color : gray;
}
} }
.columnSplit{ .columnSplit{
font-style : italic; font-style : italic;