1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-24 07:12:57 +00:00

Merge pull request #6 from koloml/media-boxes-positions

Fixed Maintenance popups getting out of screen on the start and on the end of the grid rows
This commit is contained in:
2024-06-27 01:37:44 +04:00
committed by GitHub
3 changed files with 75 additions and 2 deletions

View File

@@ -95,6 +95,51 @@
display: none;
}
&.media-box--first:not(.media-box--last) {
.media-box-tools:before {
left: -1px;
}
.media-box-tools:after {
right: -75%;
}
.maintenance-popup {
left: -1px;
right: -75%;
}
}
&.media-box--last:not(.media-box--first) {
.media-box-tools:before {
left: -75%;
}
.media-box-tools:after {
right: -1px;
}
.maintenance-popup {
left: -75%;
right: -1px;
}
}
&.media-box--last.media-box--first {
.media-box-tools:before {
left: -1px;
}
.media-box-tools:after {
right: -1px;
}
.maintenance-popup {
left: -1px;
right: -1px;
}
}
&:hover {
.media-box-tools.has-active-profile {
&:before, &:after {