From eee343c197ce323fb25cc71c87e241e25ca1af26 Mon Sep 17 00:00:00 2001 From: Gazook89 <58999374+Gazook89@users.noreply.github.com> Date: Sat, 11 Sep 2021 16:12:47 -0500 Subject: [PATCH] change tack, keep border on bottom but add page counter --- client/homebrew/editor/editor.less | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/client/homebrew/editor/editor.less b/client/homebrew/editor/editor.less index 2f0afb25f..5ad1d3ffb 100644 --- a/client/homebrew/editor/editor.less +++ b/client/homebrew/editor/editor.less @@ -4,10 +4,16 @@ width : 100%; .codeEditor{ - height : 100%; + height : 100%; + counter-reset : page; .pageLine{ - background : linear-gradient(to bottom, #DDD 0%, #EEE 100%); - border-top : #AAA solid 1px; + background : linear-gradient(to bottom, white 80%, lightgray); + &:after{ + content : counter(page); + counter-increment : page; + float : right; + color : gray; + } } .columnSplit{ font-style : italic;