handleMouseDown(e, "tl")}
/>
@@ -320,7 +323,7 @@ export default function Area(props) {
r={6}
fill={settings.mode === "light" ? "white" : "rgb(28, 31, 35)"}
stroke="#5891db"
- strokeWidth={3}
+ strokeWidth={2}
cursor="nesw-resize"
onMouseDown={(e) => handleMouseDown(e, "tr")}
/>
@@ -330,7 +333,7 @@ export default function Area(props) {
r={6}
fill={settings.mode === "light" ? "white" : "rgb(28, 31, 35)"}
stroke="#5891db"
- strokeWidth={3}
+ strokeWidth={2}
cursor="nesw-resize"
onMouseDown={(e) => handleMouseDown(e, "bl")}
/>
@@ -340,7 +343,7 @@ export default function Area(props) {
r={6}
fill={settings.mode === "light" ? "white" : "rgb(28, 31, 35)"}
stroke="#5891db"
- strokeWidth={3}
+ strokeWidth={2}
cursor="nwse-resize"
onMouseDown={(e) => handleMouseDown(e, "br")}
/>
diff --git a/src/components/control_panel.jsx b/src/components/control_panel.jsx
index 26ed456..cd03962 100644
--- a/src/components/control_panel.jsx
+++ b/src/components/control_panel.jsx
@@ -837,9 +837,6 @@ export default function ControlPanel(props) {
function: resetView,
shortcut: "Ctrl+R",
},
- "View schema": {
- function: () => {},
- },
Grid: {
function: viewGrid,
shortcut: "Ctrl+Shift+G",
diff --git a/src/components/note.jsx b/src/components/note.jsx
index 14033df..fe9dfe6 100644
--- a/src/components/note.jsx
+++ b/src/components/note.jsx
@@ -53,9 +53,17 @@ export default function Note(props) {
props.data.y + props.data.height - r
} L${props.data.x} ${props.data.y + fold}`}
fill={props.data.color}
- stroke="#665b25"
+ stroke={
+ hovered
+ ? "rgb(59 130 246)"
+ : selectedElement.element === ObjectType.NOTE &&
+ selectedElement.id === props.data.id
+ ? "rgb(59 130 246)"
+ : "rgb(168 162 158)"
+ }
+ strokeDasharray={hovered ? 4 : 0}
strokeLinejoin="round"
- strokeWidth="0.6"
+ strokeWidth="1.2"
/>
Length
-
diff --git a/src/components/table_overview.jsx b/src/components/table_overview.jsx
index de41d17..f5f917e 100644
--- a/src/components/table_overview.jsx
+++ b/src/components/table_overview.jsx
@@ -15,6 +15,7 @@ import {
Button,
Card,
TagInput,
+ InputNumber,
Popover,
Checkbox,
Select,
@@ -342,8 +343,8 @@ export default function TableOverview(props) {
{f.type === "VARCHAR" && (
<>
Length
-