Updating Reload Scrapers formatting (#5235)

Per convo with people on Discord. I have updated the Reload Scrapers UI. It now adds a button if the filter box appears and then the button extends and takes up the whole space if the filter box does not exist.
---------
Co-authored-by: CJ <tedabed@gmail.com>
Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
This commit is contained in:
Gykes
2024-09-09 21:54:15 -07:00
committed by GitHub
parent a2153ced52
commit 653cd16eb2
2 changed files with 48 additions and 20 deletions

View File

@@ -642,9 +642,39 @@ button.btn.favorite-button {
.scraper-menu .dropdown-menu {
min-width: 250px;
padding-top: 0;
.dropdown-divider {
border-top-color: $textfield-bg;
margin: 0;
}
.scraper-filter-container {
background-color: $secondary;
border-bottom: solid 1px $textfield-bg;
padding: 5px;
position: sticky;
top: 0;
z-index: 1;
.btn-group {
border: solid 1px $textfield-bg;
border-radius: 5px;
width: 100%;
}
.clearable-text-field {
background-color: $textfield-bg;
}
.clearable-text-field-clear {
background-color: unset;
border: unset;
}
.reload-button.btn {
border-bottom-right-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
}
}