mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 04:14:39 +03:00
Fix scene list table styling issues (#6169)
* Reduce z-index of table list header * Set better max-height for scene list table
This commit is contained in:
@@ -740,7 +740,7 @@ input[type="range"].zoom-slider {
|
|||||||
background-color: #202b33;
|
background-color: #202b33;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0;
|
top: 0;
|
||||||
z-index: 100;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
td:first-child {
|
td:first-child {
|
||||||
|
|||||||
@@ -958,3 +958,9 @@ input[type="range"].blue-slider {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.table-list.scene-table {
|
||||||
|
// Set max height to viewport height minus estimated header/footer height
|
||||||
|
// TODO - this will need to be rolled out to other tables
|
||||||
|
max-height: calc(100dvh - 210px);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user