Fixed field circle icons not moving in Safari

This commit is contained in:
ClaPalo 2024-04-11 19:09:19 -05:00
parent 0913ee8108
commit 3509286426

View File

@ -53,7 +53,7 @@ export default function Table(props) {
.getElementById(`scroll_table_${tableData.id}`) .getElementById(`scroll_table_${tableData.id}`)
.scrollIntoView({ behavior: "smooth" }); .scrollIntoView({ behavior: "smooth" });
} }
} };
return ( return (
<> <>
@ -100,7 +100,6 @@ export default function Table(props) {
theme="solid" theme="solid"
style={{ style={{
backgroundColor: "#2f68ad", backgroundColor: "#2f68ad",
opacity: "0.7",
marginRight: "6px", marginRight: "6px",
}} }}
onClick={openEditor} onClick={openEditor}
@ -175,7 +174,6 @@ export default function Table(props) {
type="tertiary" type="tertiary"
size="small" size="small"
style={{ style={{
opacity: "0.7",
backgroundColor: "grey", backgroundColor: "grey",
color: "white", color: "white",
}} }}
@ -279,7 +277,7 @@ export default function Table(props) {
} flex items-center gap-2 overflow-hidden`} } flex items-center gap-2 overflow-hidden`}
> >
<button <button
className="flex-shrink-0 w-[10px] h-[10px] bg-[#2f68ad] opacity-80 z-50 rounded-full" className="flex-shrink-0 w-[10px] h-[10px] bg-[#2f68ad] rounded-full"
onMouseDown={() => { onMouseDown={() => {
handleGripField(index); handleGripField(index);
setLinkingLine((prev) => ({ setLinkingLine((prev) => ({
@ -303,7 +301,6 @@ export default function Table(props) {
theme="solid" theme="solid"
size="small" size="small"
style={{ style={{
opacity: "0.7",
backgroundColor: "#d42020", backgroundColor: "#d42020",
}} }}
icon={<IconMinus />} icon={<IconMinus />}