diff options
| author | bobzel <zzzman@gmail.com> | 2022-11-04 12:43:59 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-11-04 12:43:59 -0400 |
| commit | fe98c7d46df1852a74cd84dbe9ad010bfb3d5550 (patch) | |
| tree | d1c96f67d824e98907fbe36697e0523d1af9b7bb /src/client/views/nodes/formattedText/DashFieldView.scss | |
| parent | 770f546a38d7ec827bff55fd0dd64b873a112180 (diff) | |
more fixes to pdf and text to allow dashfieldview nodes to be link anchors and make sidebar annotations work better.
Diffstat (limited to 'src/client/views/nodes/formattedText/DashFieldView.scss')
| -rw-r--r-- | src/client/views/nodes/formattedText/DashFieldView.scss | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/client/views/nodes/formattedText/DashFieldView.scss b/src/client/views/nodes/formattedText/DashFieldView.scss index c36e6804b..f17579853 100644 --- a/src/client/views/nodes/formattedText/DashFieldView.scss +++ b/src/client/views/nodes/formattedText/DashFieldView.scss @@ -1,3 +1,5 @@ +@import '../../global/globalCssVariables'; + .dashFieldView { position: relative; display: inline-flex; @@ -22,7 +24,7 @@ position: relative; display: inline-block; font-weight: normal; - background: rgba(0,0,0,0.1); + background: rgba(0, 0, 0, 0.1); } .dashFieldView-fieldSpan { min-width: 8px; @@ -31,11 +33,12 @@ padding-left: 2px; display: inline-block; background-color: rgba(155, 155, 155, 0.24); - font-weight: bold; span { min-width: 100%; display: inline-block; } } } -
\ No newline at end of file +.ProseMirror-selectedNode { + outline: solid 1px $light-blue !important; +} |
