diff options
| author | Jude <julie_wang1@brown.edu> | 2019-03-09 12:24:39 -0500 |
|---|---|---|
| committer | Jude <julie_wang1@brown.edu> | 2019-03-09 12:24:39 -0500 |
| commit | 61af714cc7fbd2db85f19f456102d551dd768d0f (patch) | |
| tree | 1e041e320e351c41b66e2a1af087137b9934a2fe /src/client/views/Main.scss | |
| parent | d7a3ba60aa2e9363eb1f9ad8ac2245395e2c6b70 (diff) | |
refactored undo/redo to the same toolbar
Diffstat (limited to 'src/client/views/Main.scss')
| -rw-r--r-- | src/client/views/Main.scss | 48 |
1 files changed, 23 insertions, 25 deletions
diff --git a/src/client/views/Main.scss b/src/client/views/Main.scss index 1c1e08b2f..9bc5c551f 100644 --- a/src/client/views/Main.scss +++ b/src/client/views/Main.scss @@ -1,4 +1,6 @@ @import "global_variables"; +@import "nodeModuleOverrides"; + html, body { width: 100%; @@ -68,30 +70,45 @@ button:hover { font-size: 50%; } -.add-button { - position: relative; +.round-button { width: 2em; height: 2em; border-radius: 1em; font-size: 24px; - margin-right: 0.4em; } -.add-button:hover { +.round-button:hover { transform: scale(1.15); } +.add-button { + position: relative; + margin-right: 0.4em; +} + .main-undoButtons { position: absolute; width: 150px; right: 0px; } -// add nodes menu -#add-nodes-menu { +//toolbar stuff +#toolbar { position: absolute; + bottom: 3.95em; left: 1em; + + .toolbar-button { + display: block; + margin-bottom: 0.4em; + } +} + +// add nodes menu. Note that the + button is actually an input label, not an actual button. +#add-nodes-menu { + position: absolute; bottom: 1em; + left: 1em; label { background: $dark-color; color: $light-color; @@ -140,22 +157,3 @@ ul#add-options-list { padding: 0; } } - -// goldenlayout stuff -div .lm_header { - background: $dark-color; - min-height: 2em; -} - -.lm_tab { - margin-top: 0.7em !important; - padding-top: 0.5em !important; - min-height: 1.4em; - padding-bottom: 0px; - border-radius: 5px; - font-family: $sans-serif !important; -} - -.lm_header .lm_controls { - right: 1em !important; -} |
