diff options
| author | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-07-04 17:25:10 -0500 |
|---|---|---|
| committer | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-07-04 17:25:10 -0500 |
| commit | 8264ac5484c0c7b5d47cb78ce60f5d6568e736d9 (patch) | |
| tree | 9827e25bcbf94f184b15feb882ae8252b89235a4 /src/client/views/nodes/LinkDescriptionPopup.scss | |
| parent | 641ddbeefbbc05f8bf586c542595af672826149b (diff) | |
redesigned editing menu, added link descriptions and popup on created
Diffstat (limited to 'src/client/views/nodes/LinkDescriptionPopup.scss')
| -rw-r--r-- | src/client/views/nodes/LinkDescriptionPopup.scss | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/src/client/views/nodes/LinkDescriptionPopup.scss b/src/client/views/nodes/LinkDescriptionPopup.scss new file mode 100644 index 000000000..474bd919b --- /dev/null +++ b/src/client/views/nodes/LinkDescriptionPopup.scss @@ -0,0 +1,62 @@ +.linkDescriptionPopup { + + display: flex; + + border: 1px solid rgb(100, 100, 100); + + width: auto; + position: absolute; + + height: auto; + z-index: 10000; + border-radius: 10px; + font-size: 12px; + //white-space: nowrap; + + background-color: rgba(250, 250, 250, 0.95); + padding-top: 9px; + padding-bottom: 9px; + padding-left: 9px; + padding-right: 9px; + + .linkDescriptionPopup-input { + float: left; + color: rgb(100, 100, 100); + } + + .linkDescriptionPopup-btn { + + float: right; + + + .linkDescriptionPopup-btn-dismiss { + background-color: white; + color: black; + display: inline; + right: 0; + border-radius: 10px; + border: 1px solid black; + padding: 3px; + font-size: 9px; + text-align: center; + position: relative; + transform: translateY(5px); + } + + .linkDescriptionPopup-btn-add { + background-color: black; + color: white; + display: inline; + right: 0; + border-radius: 10px; + border: 1px solid black; + padding: 3px; + font-size: 9px; + text-align: center; + position: relative; + transform: translateY(5px); + } + } + + +}
\ No newline at end of file |
