aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DataVizBox/DocCreatorMenu.scss
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-09-08 04:13:43 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-09-08 04:13:43 -0400
commit8970a30cff99f9234617d7ec17067275dbfc7e43 (patch)
tree10b73eae54bb4ec68bf83082b01770f2b73da722 /src/client/views/nodes/DataVizBox/DocCreatorMenu.scss
parent8eabd90dde18afd453a8561af05ef784a13e9f85 (diff)
work on fields menu
Diffstat (limited to 'src/client/views/nodes/DataVizBox/DocCreatorMenu.scss')
-rw-r--r--src/client/views/nodes/DataVizBox/DocCreatorMenu.scss67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/client/views/nodes/DataVizBox/DocCreatorMenu.scss b/src/client/views/nodes/DataVizBox/DocCreatorMenu.scss
index 955698b19..eaa32e62a 100644
--- a/src/client/views/nodes/DataVizBox/DocCreatorMenu.scss
+++ b/src/client/views/nodes/DataVizBox/DocCreatorMenu.scss
@@ -898,6 +898,7 @@
border: 1px solid rgb(180, 180, 180);
margin: 5px;
margin-top: 0px;
+ margin-bottom: 10px;
border-radius: 3px;
flex: 0 0 auto;
gap: 25px;
@@ -914,6 +915,7 @@
width: 100%;
height: 20px;
background-color: rgb(50, 50, 50);
+ color: rgb(168, 167, 167);
}
.opts-bar {
@@ -934,11 +936,38 @@
}
.content {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ align-items: center;
height: calc(100% - 20px);
width: 100%;
background-color: rgb(50, 50, 50);
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
+ resize: none;
+
+ .bubbles {
+ display: none;
+ }
+
+ .text {
+ margin-right: 5px;
+ }
+
+ &:hover .bubbles {
+ display: flex;
+ flex-direction: row;
+ align-items: flex-start;
+ }
+
+ &:hover .type-display {
+ display: none;
+ }
+
+ .bubble {
+ margin: 3px;
+ }
}
}
@@ -949,6 +978,33 @@
border-radius: 5px;
background-color: rgb(50, 50, 50);
box-shadow: 5px 5px rgb(29, 29, 31);
+
+ .content {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ align-items: center;
+ height: calc(100% - 20px);
+ width: 100%;
+ background-color: rgb(50, 50, 50);
+ border-bottom-right-radius: 5px;
+ border-bottom-left-radius: 5px;
+
+ .text {
+ margin-right: 9px;
+ }
+
+ .bubbles {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ }
+
+ .bubble {
+ margin: 3px;
+ margin-right: 4px;
+ }
+ }
}
.desc-box {
@@ -958,7 +1014,18 @@
border-radius: 5px;
background-color: rgb(50, 50, 50);
box-shadow: 5px 5px rgb(29, 29, 31);
+
+ .content {
+ height: calc(100% - 20px);
+ width: 100%;
+ background-color: rgb(50, 50, 50);
+ border-bottom-right-radius: 5px;
+ border-bottom-left-radius: 5px;
+ resize: none;
+
+ }
}
+
}
}