Spaces:
Running
Running
Update index.html
Browse files- index.html +17 -14
index.html
CHANGED
@@ -13,13 +13,14 @@
|
|
13 |
top: 0;
|
14 |
left: 0;
|
15 |
right: 0;
|
16 |
-
background:
|
17 |
border-bottom: 1px solid #ccc;
|
18 |
padding: 5px;
|
19 |
z-index: 2000;
|
20 |
display: flex;
|
21 |
align-items: center;
|
22 |
gap: 15px;
|
|
|
23 |
}
|
24 |
#topMenu select, #topMenu button {
|
25 |
padding: 5px 10px;
|
@@ -39,22 +40,24 @@
|
|
39 |
;
|
40 |
width: -webkit-fill-available;
|
41 |
align-items: baseline;
|
|
|
42 |
}
|
43 |
/* Edit Panel (floating, triggered on double-click) */
|
44 |
#editPanel {
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
|
|
58 |
/* Connection and Constraint panels (similar styling) */
|
59 |
#connectionPanel, #constraintEditPanel {
|
60 |
position: fixed;
|
|
|
13 |
top: 0;
|
14 |
left: 0;
|
15 |
right: 0;
|
16 |
+
background: transparent;
|
17 |
border-bottom: 1px solid #ccc;
|
18 |
padding: 5px;
|
19 |
z-index: 2000;
|
20 |
display: flex;
|
21 |
align-items: center;
|
22 |
gap: 15px;
|
23 |
+
backdrop-filter: blur(10px);
|
24 |
}
|
25 |
#topMenu select, #topMenu button {
|
26 |
padding: 5px 10px;
|
|
|
40 |
;
|
41 |
width: -webkit-fill-available;
|
42 |
align-items: baseline;
|
43 |
+
backdrop-filter: blur(10px);
|
44 |
}
|
45 |
/* Edit Panel (floating, triggered on double-click) */
|
46 |
#editPanel {
|
47 |
+
position: fixed;
|
48 |
+
top: 45px;
|
49 |
+
right: 0;
|
50 |
+
z-index: 2000;
|
51 |
+
background: transparent;
|
52 |
+
padding: 10px;
|
53 |
+
border: 1px solid #ccc;
|
54 |
+
border-radius: 4px;
|
55 |
+
max-width: 100%;
|
56 |
+
max-height: 72vh;
|
57 |
+
overflow-y: auto;
|
58 |
+
display: none;
|
59 |
+
backdrop-filter: blur(10px);
|
60 |
+
}
|
61 |
/* Connection and Constraint panels (similar styling) */
|
62 |
#connectionPanel, #constraintEditPanel {
|
63 |
position: fixed;
|