Spaces:
Sleeping
Sleeping
Update static/style.css
Browse files- static/style.css +30 -0
static/style.css
CHANGED
|
@@ -230,6 +230,36 @@ body{
|
|
| 230 |
resize: both; /* Allows dragging from bottom-right */
|
| 231 |
background-color: white;
|
| 232 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 233 |
.measure-item,.relv-item {
|
| 234 |
align-items: center;
|
| 235 |
cursor: pointer;
|
|
|
|
| 230 |
resize: both; /* Allows dragging from bottom-right */
|
| 231 |
background-color: white;
|
| 232 |
}
|
| 233 |
+
|
| 234 |
+
.scrollable-container {
|
| 235 |
+
max-height: 300px;
|
| 236 |
+
overflow-y: auto;
|
| 237 |
+
background-color: #fff;
|
| 238 |
+
color: #000;
|
| 239 |
+
padding: 15px;
|
| 240 |
+
}
|
| 241 |
+
|
| 242 |
+
/* Disabled visual style (optional, for when disabled) */
|
| 243 |
+
.scrollable-container.disabled {
|
| 244 |
+
background-color: #f0f0f0;
|
| 245 |
+
color: #999;
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
/* Overlay that blocks interaction */
|
| 249 |
+
.disable-overlay {
|
| 250 |
+
position: absolute;
|
| 251 |
+
margin-left:-7px;
|
| 252 |
+
width:372px;
|
| 253 |
+
top: 0;
|
| 254 |
+
left: 0;
|
| 255 |
+
right: 0;
|
| 256 |
+
bottom: 0;
|
| 257 |
+
cursor: not-allowed;
|
| 258 |
+
background: rgba(240, 240, 240, 0.5); /* translucent gray */
|
| 259 |
+
z-index: 10;
|
| 260 |
+
display: none; /* hidden by default */
|
| 261 |
+
}
|
| 262 |
+
|
| 263 |
.measure-item,.relv-item {
|
| 264 |
align-items: center;
|
| 265 |
cursor: pointer;
|