Spaces:
Sleeping
Sleeping
endless scrolling fix
Browse files
style.css
CHANGED
|
@@ -218,6 +218,39 @@ label.selected{
|
|
| 218 |
overflow-y: auto;
|
| 219 |
}
|
| 220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 221 |
/* .tabitem:nth-child(n+3) {
|
| 222 |
padding-top:30px;
|
| 223 |
padding-left:40px;
|
|
|
|
| 218 |
overflow-y: auto;
|
| 219 |
}
|
| 220 |
|
| 221 |
+
/* Add specific containment for side panels */
|
| 222 |
+
#right-panel {
|
| 223 |
+
height: calc(100vh - 90px);
|
| 224 |
+
max-height: calc(100vh - 90px);
|
| 225 |
+
overflow: hidden;
|
| 226 |
+
}
|
| 227 |
+
|
| 228 |
+
#right-panel > div {
|
| 229 |
+
height: 100%;
|
| 230 |
+
overflow-y: auto;
|
| 231 |
+
}
|
| 232 |
+
|
| 233 |
+
.tabitem {
|
| 234 |
+
height: calc(100vh - 190px);
|
| 235 |
+
max-height: calc(100vh - 190px);
|
| 236 |
+
overflow-y: auto;
|
| 237 |
+
position: relative;
|
| 238 |
+
}
|
| 239 |
+
|
| 240 |
+
.other-tabs > div {
|
| 241 |
+
padding-left: 40px;
|
| 242 |
+
padding-right: 40px;
|
| 243 |
+
padding-top: 10px;
|
| 244 |
+
height: 100%;
|
| 245 |
+
overflow-y: auto;
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
/* Ensure gallery items are contained */
|
| 249 |
+
.gallery-item {
|
| 250 |
+
position: relative;
|
| 251 |
+
overflow: hidden;
|
| 252 |
+
}
|
| 253 |
+
|
| 254 |
/* .tabitem:nth-child(n+3) {
|
| 255 |
padding-top:30px;
|
| 256 |
padding-left:40px;
|