It was broken since we fixed issues with other image fields in commit
394a94cbf, because there we added a fieldset for the image fields, and
so they inherited the styles in budget phases fields (these styles were
added before it was possible to attach an image to a phase).
36 lines
462 B
SCSS
36 lines
462 B
SCSS
.admin .budget-phases-form {
|
|
|
|
> fieldset {
|
|
margin-top: $line-height;
|
|
|
|
> * {
|
|
@include grid-column;
|
|
}
|
|
|
|
> .date-field {
|
|
|
|
@include breakpoint(medium) {
|
|
width: 50%;
|
|
}
|
|
|
|
@include breakpoint(large) {
|
|
width: 25%;
|
|
}
|
|
|
|
&:last-child {
|
|
float: left;
|
|
}
|
|
}
|
|
}
|
|
|
|
.images {
|
|
@include direct-uploads;
|
|
}
|
|
|
|
.button {
|
|
&.upload-image {
|
|
margin-bottom: $line-height / 2;
|
|
}
|
|
}
|
|
}
|