mirror of
https://github.com/stashapp/stash.git
synced 2026-05-09 05:05:29 +02:00
Fix width of image selection arrow div (#4142)
This commit is contained in:
parent
ce55392461
commit
bba60cc45b
2 changed files with 7 additions and 1 deletions
|
|
@ -402,7 +402,7 @@ export const ScrapedImagesRow: React.FC<IScrapedImagesRowProps> = (props) => {
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
renderNewField={() => (
|
renderNewField={() => (
|
||||||
<div>
|
<div className="image-selection-parent">
|
||||||
<ImageSelector
|
<ImageSelector
|
||||||
imageClassName={props.className}
|
imageClassName={props.className}
|
||||||
images={props.images}
|
images={props.images}
|
||||||
|
|
|
||||||
|
|
@ -144,6 +144,10 @@
|
||||||
padding-right: 15px;
|
padding-right: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.image-selection-parent {
|
||||||
|
min-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.image-selection {
|
.image-selection {
|
||||||
.select-buttons {
|
.select-buttons {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
@ -369,6 +373,7 @@ div.react-datepicker {
|
||||||
|
|
||||||
.react-datepicker__day {
|
.react-datepicker__day {
|
||||||
color: $text-color;
|
color: $text-color;
|
||||||
|
|
||||||
&.react-datepicker__day--disabled {
|
&.react-datepicker__day--disabled {
|
||||||
color: $text-muted;
|
color: $text-muted;
|
||||||
}
|
}
|
||||||
|
|
@ -438,6 +443,7 @@ div.react-datepicker {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* stylelint-enable */
|
/* stylelint-enable */
|
||||||
|
|
||||||
#date-picker-portal .react-datepicker-popper {
|
#date-picker-portal .react-datepicker-popper {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue