Commit 491434fd authored by NGPixel's avatar NGPixel

fix: marker highlighting for visual editor

parent 8eddc479
...@@ -242,7 +242,7 @@ export default { ...@@ -242,7 +242,7 @@ export default {
this.tree = [ this.tree = [
{ {
id: 0, id: 0,
title: '/ (root', title: '/ (root)',
children: [] children: []
} }
] ]
......
...@@ -683,6 +683,33 @@ ...@@ -683,6 +683,33 @@
} }
// ---------------------------------
// HIGHLIGHTING
// ---------------------------------
mark {
&.pen-red {
color: mc('red', '500');
background-color: initial;
}
&.pen-green {
color: mc('green', '500');
background-color: initial;
}
&.marker-blue {
background-color: mc('blue', '300');
}
&.marker-yellow {
background-color: mc('yellow', '300');
}
&.marker-pink {
background-color: mc('pink', '300');
}
&.marker-green {
background-color: mc('green', '300');
}
}
} }
// --------------- // ---------------
......
Markdown is supported
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