Spaces:
Running
Running
Update index.html
Browse files- index.html +22 -12
index.html
CHANGED
@@ -26,23 +26,27 @@
|
|
26 |
font-size: 14px;
|
27 |
}
|
28 |
/* A container below the menu for additional options */
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
|
|
|
|
|
|
|
|
39 |
/* Edit Panel (floating, triggered on double-click) */
|
40 |
#editPanel {
|
41 |
position: fixed;
|
42 |
top: 45px;
|
43 |
right: 10px;
|
44 |
z-index: 2000;
|
45 |
-
background: rgba(255,255,255,0.
|
46 |
padding: 10px;
|
47 |
border: 1px solid #ccc;
|
48 |
border-radius: 4px;
|
@@ -66,7 +70,13 @@
|
|
66 |
#constraintEditPanel { bottom: 10px; right: 10px; }
|
67 |
/* Common styling for labels/inputs */
|
68 |
label { display: block; margin-top: 8px; font-size: 13px; }
|
69 |
-
input, select, button {
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
</style>
|
71 |
</head>
|
72 |
<body>
|
|
|
26 |
font-size: 14px;
|
27 |
}
|
28 |
/* A container below the menu for additional options */
|
29 |
+
#subOptionsContainer {
|
30 |
+
position: fixed;
|
31 |
+
top: 45px;
|
32 |
+
left: 0;
|
33 |
+
z-index: 2000;
|
34 |
+
background: transparent;
|
35 |
+
padding: 5px;
|
36 |
+
border: 1px solid #ccc;
|
37 |
+
border-radius: 0;
|
38 |
+
display: flex
|
39 |
+
;
|
40 |
+
width: -webkit-fill-available;
|
41 |
+
align-items: baseline;
|
42 |
+
}
|
43 |
/* Edit Panel (floating, triggered on double-click) */
|
44 |
#editPanel {
|
45 |
position: fixed;
|
46 |
top: 45px;
|
47 |
right: 10px;
|
48 |
z-index: 2000;
|
49 |
+
background: rgba(255,255,255,0.5);
|
50 |
padding: 10px;
|
51 |
border: 1px solid #ccc;
|
52 |
border-radius: 4px;
|
|
|
70 |
#constraintEditPanel { bottom: 10px; right: 10px; }
|
71 |
/* Common styling for labels/inputs */
|
72 |
label { display: block; margin-top: 8px; font-size: 13px; }
|
73 |
+
input, select, button {
|
74 |
+
width: fit-content;
|
75 |
+
padding: 5px;
|
76 |
+
margin-top: 4px;
|
77 |
+
font-size: 13px;
|
78 |
+
margin: 4px;
|
79 |
+
}
|
80 |
</style>
|
81 |
</head>
|
82 |
<body>
|