From 2a5acb9893eac8f29592f8eade348a67284e9305 Mon Sep 17 00:00:00 2001 From: bryan Date: Fri, 9 Oct 2020 22:13:22 -0700 Subject: [PATCH] Better bullet points in edit mode --- README.md | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a2aca95..9ac384c 100644 --- a/README.md +++ b/README.md @@ -521,7 +521,7 @@ Credits to Shamama and Wonton --- -### Make subtler folding gutter arrows: +### Make subtler folding gutter arrows @@ -553,3 +553,32 @@ Credits to rsdimitrov --- +### Better bullet points in edit mode + + + +
+CSS +

+
+div:not(.CodeMirror-activeline)>.CodeMirror-line span.cm-formatting-list-ul {
+  color: transparent;
+  position: relative;
+}
+
+div:not(.CodeMirror-activeline)>.CodeMirror-line span.cm-formatting-list-ul:after {
+  content: "•";
+  position: absolute;
+  top: -6px;
+  left: 4px;
+  color: var(--bright-aqua);
+  font-family: sans-serif;
+  font-size: 20px;
+}
+
+
+ +Credits to Piotr + +--- +