|
@@ -19,9 +19,6 @@
|
|
--link-hover: #f00;
|
|
--link-hover: #f00;
|
|
--selector-background: rgba(0, 0, 200, 0.1);
|
|
--selector-background: rgba(0, 0, 200, 0.1);
|
|
--selector-color: var(--primary);
|
|
--selector-color: var(--primary);
|
|
- --transition-speed: 0.1s;
|
|
|
|
- --transition-speed-slow: 0.3s;
|
|
|
|
- --node-selection: darkblue;
|
|
|
|
|
|
|
|
/*--transition-speed: 0.3s;*/
|
|
/*--transition-speed: 0.3s;*/
|
|
|
|
|
|
@@ -42,7 +39,9 @@
|
|
}
|
|
}
|
|
|
|
|
|
.lines input {
|
|
.lines input {
|
|
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
|
|
|
|
|
|
+ border: solid 1px var(--border-color);
|
|
|
|
+ box-shadow: none; /*0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);*/
|
|
|
|
+ color: #777;
|
|
}
|
|
}
|
|
|
|
|
|
/* chat */
|
|
/* chat */
|
|
@@ -71,6 +70,10 @@
|
|
border-bottom: solid 1px var(--border-color);
|
|
border-bottom: solid 1px var(--border-color);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.lines .hx-collapsible__header {
|
|
|
|
+ height: 50px;
|
|
|
|
+}
|
|
|
|
+
|
|
.lines .flow-node__body {
|
|
.lines .flow-node__body {
|
|
fill: transparent;
|
|
fill: transparent;
|
|
stroke-width: 3px;
|
|
stroke-width: 3px;
|
|
@@ -83,3 +86,31 @@
|
|
.lines .flow-node--selected .flow-node__label {
|
|
.lines .flow-node--selected .flow-node__label {
|
|
fill: white !important;
|
|
fill: white !important;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+.lines .flow-panel__selector {
|
|
|
|
+ flex-basis: 51px;
|
|
|
|
+ border-bottom: 1px solid var(--border-color) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.lines .flow-panel__selector .active {
|
|
|
|
+ color: var(--normal);
|
|
|
|
+ background: transparent;
|
|
|
|
+ position: relative;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.lines .flow-panel__selector .active::before {
|
|
|
|
+ content: " ";
|
|
|
|
+ position: absolute;
|
|
|
|
+ bottom: 0;
|
|
|
|
+ height: 3px;
|
|
|
|
+ left: 0;
|
|
|
|
+ right: 0;
|
|
|
|
+ background: var(--primary);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.lines .flow-main h1,
|
|
|
|
+.lines .flow-main h2,
|
|
|
|
+.lines .flow-main h3,
|
|
|
|
+.lines .flow-main h4 {
|
|
|
|
+ color: #222 !important;
|
|
|
|
+}
|