diff options
| author | bob <bcz@cs.brown.edu> | 2019-04-03 11:45:15 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-04-03 11:45:15 -0400 |
| commit | bb7d5a26ec68f283c5adb42d4d6554253de7176f (patch) | |
| tree | 7efa817102ba54e916601611f608dd4bd761a437 /src/client/views/nodes/LinkEditor.scss | |
| parent | 43a0768690caa89c606dd5d296d3cc8825c1702b (diff) | |
| parent | c406c8d123ce0aa9d63fb8a4dd90adfe83d2889d (diff) | |
merged with master
Diffstat (limited to 'src/client/views/nodes/LinkEditor.scss')
| -rw-r--r-- | src/client/views/nodes/LinkEditor.scss | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/client/views/nodes/LinkEditor.scss b/src/client/views/nodes/LinkEditor.scss new file mode 100644 index 000000000..fb0c69cff --- /dev/null +++ b/src/client/views/nodes/LinkEditor.scss @@ -0,0 +1,43 @@ +@import "../global_variables"; +.edit-container { + width: 100%; + height: auto; + display: flex; + flex-direction: column; +} + +.name-input { + margin-bottom: 10px; + padding: 5px; + font-size: 12px; + border: 1px solid #bababa; +} + +.description-input { + font-size: 11px; + padding: 5px; + margin-bottom: 10px; + border: 1px solid #bababa; +} + +.save-button { + width: 50px; + height: 20px; + pointer-events: auto; + background-color: $dark-color; + color: $light-color; + text-transform: uppercase; + letter-spacing: 2px; + padding: 2px; + font-size: 10px; + margin: 0 auto; + transition: transform 0.2s; + text-align: center; + line-height: 20px; +} + +.save-button:hover { + background: $main-accent; + transform: scale(1.05); + cursor: pointer; +}
\ No newline at end of file |
