Skip to content
Snippets Groups Projects
Commit 1c1a927b authored by chris's avatar chris Committed by john
Browse files

auto numbering for notes in mini editor

parent 22dd5a4f
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ $white: #fff; ...@@ -3,6 +3,7 @@ $white: #fff;
.notes-container { .notes-container {
background-color: $white; background-color: $white;
bottom: 0; bottom: 0;
counter-reset: note-footer;
height: 95px; height: 95px;
left: 130px; left: 130px;
max-height: 700px; max-height: 700px;
...@@ -23,4 +24,10 @@ $white: #fff; ...@@ -23,4 +24,10 @@ $white: #fff;
.sc-isolated-node { .sc-isolated-node {
border: 1px solid red!important; border: 1px solid red!important;
} }
.sc-isolated-node::before {
content: ''counter(note-footer)'. ';
counter-increment: note-footer;
left: -40px;
position: absolute;
}
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment