diff --git a/src/components/EditorWindow.vue b/src/components/EditorWindow.vue
index 53f95a4..e1196ac 100644
--- a/src/components/EditorWindow.vue
+++ b/src/components/EditorWindow.vue
@@ -157,29 +157,31 @@ function nodeHeader(node: GraphNode): string {
-
Точки
-
Всего точек: {{ graph.nodes.length }}
-
- Всего связей: {{ allEdges }}, показано: {{ displayEdges }}
+
Точки
+
Всего точек: {{ graph.nodes.length }}
-
-
+
-
-
- {{ nodeHeader(node) }}
- ({{ node.applications.length }})
-
- Скопировать ссылку
+
@@ -189,7 +191,7 @@ function nodeHeader(node: GraphNode): string {
{{ nodeHeader(selectedNode) }}
-
+
Приложения: {{ selectedNode.applications.length }}
@@ -224,7 +226,7 @@ function nodeHeader(node: GraphNode): string {
left: 5px;
top: 55px;
height: calc(100vh - 100px);
- padding: 10px 20px;
+ padding: 3px 10px;
}
.edit-node-container {
@@ -232,7 +234,7 @@ function nodeHeader(node: GraphNode): string {
right: 5px;
top: 55px;
height: calc(100vh - 100px);
- padding: 10px 20px;
+ padding: 3px 10px;
min-width: 350px;
max-width: 400px;
}
@@ -272,6 +274,7 @@ function nodeHeader(node: GraphNode): string {
}
.hr {
+ width: 250px;
margin: 10px 0;
}
@@ -284,6 +287,15 @@ function nodeHeader(node: GraphNode): string {
cursor: pointer;
}
+.scroll-y {
+ overflow-y: auto;
+ max-height: calc(100vh - 200px);
+}
+
+.scroll-y::-webkit-scrollbar {
+ display: none;
+}
+
.checkbox-green {