diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2020-04-08 19:14:47 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2020-04-08 19:14:47 -0400 |
| commit | b21db9d40c1619df5455ba8ffe3ef76913cc92de (patch) | |
| tree | ad895a8e98429ecbf3422da584fd93e31ddd935f /src/client/views/nodes/ScriptingBox.scss | |
| parent | 17c2562a7be4c4e1c2990233eea6f91a68f16942 (diff) | |
added scripting box
Diffstat (limited to 'src/client/views/nodes/ScriptingBox.scss')
| -rw-r--r-- | src/client/views/nodes/ScriptingBox.scss | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/client/views/nodes/ScriptingBox.scss b/src/client/views/nodes/ScriptingBox.scss index e69de29bb..f31c72bb2 100644 --- a/src/client/views/nodes/ScriptingBox.scss +++ b/src/client/views/nodes/ScriptingBox.scss @@ -0,0 +1,33 @@ +.scriptingBox-outerDiv { + width: 100%; + height: 100%; + display: flex; + flex-direction: column; + pointer-events: all; + background-color: rgb(241, 239, 235); + padding: 10px; + .scriptingBox-inputDiv { + display: flex; + flex-direction: column; + height: calc(100% - 30px); + .scriptingBox-errorMessage { + overflow: auto; + } + .scriptingBox-textArea { + width: 100%; + height: 100%; + box-sizing: border-box; + resize: none; + padding: 7px; + } + } + + .scriptingBox-toolbar { + width: 100%; + height: 30px; + .scriptingBox-button { + width: 50% + } + } +} + |
