Spaces:
Sleeping
Sleeping
Upload popups.css
Browse files- static/popups.css +21 -1
static/popups.css
CHANGED
|
@@ -56,6 +56,22 @@
|
|
| 56 |
background-color: rgba(0, 0, 0, 0.4);
|
| 57 |
}
|
| 58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
.Lpopup{
|
| 60 |
display: none;
|
| 61 |
position: absolute;
|
|
@@ -346,8 +362,12 @@ overflow-y:auto
|
|
| 346 |
|
| 347 |
/* Modal Body */
|
| 348 |
.modal-body {
|
|
|
|
|
|
|
| 349 |
padding: 2px 15px;
|
| 350 |
-
|
|
|
|
|
|
|
| 351 |
}
|
| 352 |
|
| 353 |
|
|
|
|
| 56 |
background-color: rgba(0, 0, 0, 0.4);
|
| 57 |
}
|
| 58 |
|
| 59 |
+
|
| 60 |
+
|
| 61 |
+
.selectall-btn {
|
| 62 |
+
background-color: #007bff;
|
| 63 |
+
color: white;
|
| 64 |
+
padding: 6px 12px;
|
| 65 |
+
border: none;
|
| 66 |
+
border-radius: 4px;
|
| 67 |
+
cursor: pointer;
|
| 68 |
+
}
|
| 69 |
+
|
| 70 |
+
.selectall-btn:hover {
|
| 71 |
+
background-color: #0069d9;
|
| 72 |
+
}
|
| 73 |
+
|
| 74 |
+
|
| 75 |
.Lpopup{
|
| 76 |
display: none;
|
| 77 |
position: absolute;
|
|
|
|
| 362 |
|
| 363 |
/* Modal Body */
|
| 364 |
.modal-body {
|
| 365 |
+
/* padding: 2px 15px;
|
| 366 |
+
overflow: visible; Ensure tooltip is not clipped */
|
| 367 |
padding: 2px 15px;
|
| 368 |
+
max-height: 400px; /* IMPORTANT */
|
| 369 |
+
overflow-y: auto; /* scrollbar */
|
| 370 |
+
overflow-x: hidden;
|
| 371 |
}
|
| 372 |
|
| 373 |
|