2020-03-30 15:34:56 +02:00
|
|
|
@import "colors";
|
2019-10-22 10:58:04 +02:00
|
|
|
@import "constants";
|
2019-02-18 18:00:37 +01:00
|
|
|
|
2019-10-22 10:58:04 +02:00
|
|
|
.attachment-actions {
|
2019-02-18 18:00:37 +01:00
|
|
|
display: flex;
|
2019-02-19 14:29:06 +01:00
|
|
|
margin-bottom: $default-spacer;
|
2019-02-18 18:00:37 +01:00
|
|
|
}
|
|
|
|
|
2019-10-22 10:58:04 +02:00
|
|
|
.attachment-action {
|
2019-02-18 18:00:37 +01:00
|
|
|
margin-right: $default-spacer;
|
|
|
|
|
|
|
|
.button {
|
|
|
|
text-transform: lowercase;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-30 15:34:56 +02:00
|
|
|
.attachment-error {
|
|
|
|
display: flex;
|
|
|
|
width: max-content;
|
|
|
|
max-width: 100%;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: $default-padding;
|
|
|
|
padding: $default-padding;
|
|
|
|
background: $background-red;
|
|
|
|
|
|
|
|
&.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachment-error-message {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: $default-padding;
|
|
|
|
color: $medium-red;
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachment-error-title {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachment-error-retry {
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
&.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-22 10:58:04 +02:00
|
|
|
.attachment-input.hidden {
|
2019-02-18 18:00:37 +01:00
|
|
|
display: none;
|
|
|
|
}
|