diff options
| author | bobzel <zzzman@gmail.com> | 2023-05-16 20:41:37 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-05-16 20:41:37 -0400 |
| commit | d3ecf7bdacd925fcd293a300c53206b12bee8ce9 (patch) | |
| tree | 06a9d0f0b5809d2c7b6c1257f93c6bf7e77dbea0 /src/client/views/UndoStack.scss | |
| parent | 46cf6c823ca8ab628cd8c5bd7fdfe8945344a014 (diff) | |
cleaned up UndoStack a bit to be available with the undo/redo buttons (using Long Press).
Diffstat (limited to 'src/client/views/UndoStack.scss')
| -rw-r--r-- | src/client/views/UndoStack.scss | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/client/views/UndoStack.scss b/src/client/views/UndoStack.scss new file mode 100644 index 000000000..ab21e6d7e --- /dev/null +++ b/src/client/views/UndoStack.scss @@ -0,0 +1,29 @@ +.undoStack-outerContainer { + height: 100%; + display: flex; + flex-direction: column; + position: relative; + pointer-events: all; + padding-left: 4px; +} + +.undoStack-resultContainer { + border-radius: 5px; +} + +.undoStack-commandInput { + width: 100%; +} + +.undoStack-commandResult, +.undoStack-commandString { + overflow-wrap: break-word; +} + +.undoStack-commandsContainer { + background-color: whitesmoke; + flex: 1 1 auto; + overflow-y: scroll; + height: 30px; + border-radius: 5px; +} |
