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 + +--- +