Improvements to #530 styling

This commit is contained in:
Zef Hemel
2023-10-29 12:10:30 +01:00
parent 63b614670c
commit 7e9a3f7b6a
5 changed files with 80 additions and 26 deletions
+21 -2
View File
@@ -25,10 +25,29 @@ body {
color: var(--root-color);
}
ul li p {
margin: 0;
ul,
ol {
margin-top: 0;
margin-bottom: 0;
}
ul {
list-style: none;
}
ul li::before {
content: "\2022";
/* Add content: \2022 is the CSS Code/unicode for a bullet */
color: var(--editor-list-bullet-color);
display: inline-block;
/* Needed to add space between the bullet and the text */
width: 1em;
/* Also needed for space (tweak if needed) */
margin-left: -1em;
/* Also needed for space (tweak if needed) */
}
body:hover #button-bar,
body:active #button-bar {
display: block;