diff options
author | bob <bcz@cs.brown.edu> | 2019-12-02 13:43:08 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-12-02 13:43:08 -0500 |
commit | 59ab8a05866bbf065aa5078029a7bef1ebb708df (patch) | |
tree | e4142cdc2a4e3e78af951b4093e215839094a60b | |
parent | 1ef06e189a352e5472ee267d44d4b3c96042f03c (diff) |
small highlighting fixes to inline text comments.
-rw-r--r-- | src/client/views/nodes/FormattedTextBox.scss | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/src/client/views/nodes/FormattedTextBox.scss b/src/client/views/nodes/FormattedTextBox.scss index 4f72bb679..c06f38a6c 100644 --- a/src/client/views/nodes/FormattedTextBox.scss +++ b/src/client/views/nodes/FormattedTextBox.scss @@ -194,10 +194,12 @@ footnote::after { position: relative; width: 40px; height: 20px; -} - -.formattedTextBox-inlineComment::after { - content: "←"; + &::after { + content: "→"; + } + &:hover { + background: orange; + } } .formattedTextBox-summarizer { @@ -205,11 +207,9 @@ footnote::after { position: relative; width: 40px; height: 20px; -} - -.formattedTextBox-summarizer::after { - content: "←"; - font-weight: bold; + &::after { + content: "←"; + } } .formattedTextBox-summarizer-collapsed { @@ -217,10 +217,9 @@ footnote::after { position: relative; width: 40px; height: 20px; -} - -.formattedTextBox-summarizer-collapsed::after { - content: "..."; + &::after { + content: "..."; + } } .ProseMirror { |