aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/ScriptingBox.scss
diff options
context:
space:
mode:
authoranika-ahluwalia <anika.ahluwalia@gmail.com>2020-05-20 15:03:35 -0500
committeranika-ahluwalia <anika.ahluwalia@gmail.com>2020-05-20 15:03:35 -0500
commit6e055a4953c55f297626e75796698e51bb83a150 (patch)
treef224ae2a32ac1bfe459e76d27da3fee9424a6430 /src/client/views/nodes/ScriptingBox.scss
parent337183e190c30216fe138600a8d599774260f784 (diff)
added booleans and drop down choices for params, fixed deleting and modifying params
Diffstat (limited to 'src/client/views/nodes/ScriptingBox.scss')
-rw-r--r--src/client/views/nodes/ScriptingBox.scss82
1 files changed, 82 insertions, 0 deletions
diff --git a/src/client/views/nodes/ScriptingBox.scss b/src/client/views/nodes/ScriptingBox.scss
index 6029966ac..8c91dee6c 100644
--- a/src/client/views/nodes/ScriptingBox.scss
+++ b/src/client/views/nodes/ScriptingBox.scss
@@ -42,6 +42,88 @@
resize: none;
padding: 2px;
overflow-y: scroll;
+
+ .scriptingBox-viewBase {
+ display: flex;
+
+ .scriptingBox-viewPicker {
+ font-size: 75%;
+ //text-transform: uppercase;
+ letter-spacing: 2px;
+ background: rgb(238, 238, 238);
+ color: grey;
+ outline-color: black;
+ border: none;
+ padding: 12px 10px 11px 10px;
+ }
+
+ .scriptingBox-viewPicker:active {
+ outline-color: black;
+ }
+
+ .scriptingBox-cmdPicker {
+ margin-left: 3px;
+ margin-right: 0px;
+ background: rgb(238, 238, 238);
+ border: none;
+ color: grey;
+ }
+
+ .commandEntry-outerDiv {
+ pointer-events: all;
+ background-color: gray;
+ display: flex;
+ flex-direction: row;
+
+ .commandEntry-drop {
+ color: white;
+ width: 25px;
+ margin-top: auto;
+ margin-bottom: auto;
+ }
+ }
+
+ .scriptingBox-collapse {
+ transition: all .5s, opacity 0.3s;
+ position: absolute;
+ width: 40px;
+ transform-origin: top left;
+ pointer-events: all;
+ // margin-top: 10px;
+ }
+
+ .scriptingBox-template,
+ .scriptingBox-viewModes {
+ display: grid;
+ background: rgb(238, 238, 238);
+ color: grey;
+ margin-top: auto;
+ margin-bottom: auto;
+ margin-left: 5px;
+ }
+
+ .scriptingBox-viewModes {
+ margin-left: 25px;
+ }
+
+ .scriptingBox-viewSpecs {
+ margin-left: 5px;
+ display: grid;
+
+ .scriptingBox-filterIcon {
+ position: relative;
+ display: flex;
+ margin: auto;
+ background: gray;
+ color: white;
+ width: 40px;
+ height: 40px;
+ align-items: center;
+ justify-content: center;
+ }
+ }
+
+ }
}
.scriptingBox-paramNames {