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:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user