From 2c130d1943bee097c4fc58ca2665b573a006259e Mon Sep 17 00:00:00 2001 From: Gazook89 Date: Wed, 27 Sep 2023 22:45:53 -0500 Subject: [PATCH] add styling for definition lists in the editor. --- client/homebrew/editor/editor.less | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/client/homebrew/editor/editor.less b/client/homebrew/editor/editor.less index db88b5b0f..0245c666b 100644 --- a/client/homebrew/editor/editor.less +++ b/client/homebrew/editor/editor.less @@ -19,6 +19,20 @@ background-color : fade(#299, 15%); border-bottom : #299 solid 1px; } + .define { + &:not(.term):not(.definition){ + color: #949494; + font-weight: bold; + background: #e5e5e5; + border-radius: 3px; + } + &.term { + color: rgb(96, 117, 143); + } + &.definition { + color: rgb(97, 57, 178); + } + } .block:not(.cm-comment){ color : purple; font-weight : bold;