Spaces:
Running
Running
More automatic formatting.
Browse files
lynxkite-app/web/src/index.css
CHANGED
|
@@ -355,13 +355,14 @@ body {
|
|
| 355 |
margin-top: 10px;
|
| 356 |
}
|
| 357 |
|
| 358 |
-
.graph-tables,
|
| 359 |
-
|
| 360 |
-
|
| 361 |
-
|
|
|
|
| 362 |
}
|
| 363 |
|
| 364 |
-
.graph-table-header{
|
| 365 |
display: flex;
|
| 366 |
justify-content: space-between;
|
| 367 |
font-weight: bold;
|
|
@@ -401,7 +402,7 @@ body {
|
|
| 401 |
font-weight: bold;
|
| 402 |
display: block;
|
| 403 |
margin-bottom: 2px;
|
| 404 |
-
color: #666;
|
| 405 |
}
|
| 406 |
|
| 407 |
.graph-relation-attributes input {
|
|
@@ -429,4 +430,4 @@ body {
|
|
| 429 |
|
| 430 |
.add-relationship-button:hover {
|
| 431 |
background-color: #218838;
|
| 432 |
-
}
|
|
|
|
| 355 |
margin-top: 10px;
|
| 356 |
}
|
| 357 |
|
| 358 |
+
.graph-tables,
|
| 359 |
+
.graph-relations {
|
| 360 |
+
flex: 1;
|
| 361 |
+
padding-left: 10px;
|
| 362 |
+
padding-right: 10px;
|
| 363 |
}
|
| 364 |
|
| 365 |
+
.graph-table-header {
|
| 366 |
display: flex;
|
| 367 |
justify-content: space-between;
|
| 368 |
font-weight: bold;
|
|
|
|
| 402 |
font-weight: bold;
|
| 403 |
display: block;
|
| 404 |
margin-bottom: 2px;
|
| 405 |
+
color: #666; /* Lighter text for labels */
|
| 406 |
}
|
| 407 |
|
| 408 |
.graph-relation-attributes input {
|
|
|
|
| 430 |
|
| 431 |
.add-relationship-button:hover {
|
| 432 |
background-color: #218838;
|
| 433 |
+
}
|
lynxkite-app/web/src/workspace/Workspace.tsx
CHANGED
|
@@ -41,11 +41,11 @@ import NodeSearch, {
|
|
| 41 |
type Catalog,
|
| 42 |
type Catalogs,
|
| 43 |
} from "./NodeSearch.tsx";
|
|
|
|
| 44 |
import NodeWithImage from "./nodes/NodeWithImage.tsx";
|
| 45 |
import NodeWithParams from "./nodes/NodeWithParams";
|
| 46 |
import NodeWithTableView from "./nodes/NodeWithTableView.tsx";
|
| 47 |
import NodeWithVisualization from "./nodes/NodeWithVisualization.tsx";
|
| 48 |
-
import NodeWithGraphCreationView from "./nodes/GraphCreationNode.tsx";
|
| 49 |
|
| 50 |
export default function (props: any) {
|
| 51 |
return (
|
|
|
|
| 41 |
type Catalog,
|
| 42 |
type Catalogs,
|
| 43 |
} from "./NodeSearch.tsx";
|
| 44 |
+
import NodeWithGraphCreationView from "./nodes/GraphCreationNode.tsx";
|
| 45 |
import NodeWithImage from "./nodes/NodeWithImage.tsx";
|
| 46 |
import NodeWithParams from "./nodes/NodeWithParams";
|
| 47 |
import NodeWithTableView from "./nodes/NodeWithTableView.tsx";
|
| 48 |
import NodeWithVisualization from "./nodes/NodeWithVisualization.tsx";
|
|
|
|
| 49 |
|
| 50 |
export default function (props: any) {
|
| 51 |
return (
|