Using the `document` or `documents` classes meant styles defined for the public list of documents conflict with these ones. So now we're using HTML classes that match the name of the Ruby component classes, as we usually do.
36 lines
469 B
SCSS
36 lines
469 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-nested {
|
|
@include direct-uploads;
|
|
}
|
|
|
|
.button {
|
|
&.upload-image {
|
|
margin-bottom: $line-height / 2;
|
|
}
|
|
}
|
|
}
|