diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2020-06-24 18:49:25 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2020-06-24 18:49:25 -0400 |
| commit | 4ee4b611c6d6732377f2f9160237118847fca92b (patch) | |
| tree | e8860f5404be9859a3676b59ebe8e0bcf2295604 /src/client/views/nodes/DocumentLinksButton.scss | |
| parent | fe6da65c9ac7ff797a2e0b6047bef2656463c008 (diff) | |
added ability to start a link & finish a link with double click
Diffstat (limited to 'src/client/views/nodes/DocumentLinksButton.scss')
| -rw-r--r-- | src/client/views/nodes/DocumentLinksButton.scss | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentLinksButton.scss b/src/client/views/nodes/DocumentLinksButton.scss index b9d5d437b..b4c59b91c 100644 --- a/src/client/views/nodes/DocumentLinksButton.scss +++ b/src/client/views/nodes/DocumentLinksButton.scss @@ -13,14 +13,16 @@ cursor: pointer; } +.documentLinksButton-button, .documentLinksButton-button-empty, .documentLinksButton-button-nonempty { height: 20px; width: 20px; + left: -15px; + position: absolute; border-radius: 50%; opacity: 0.9; pointer-events: auto; - background-color: $link-color; color: black; text-transform: uppercase; letter-spacing: 2px; @@ -36,4 +38,14 @@ transform: scale(1.05); cursor: pointer; } +} +.documentLinksButton-button-nonempty { + background-color: $link-color; +} +.documentLinksButton-button-empty { + border: red solid 2px; +} +.documentLinksButton-button { + border: red solid 2px; + background-color: rgba(255, 192, 203, 0.5); }
\ No newline at end of file |
