101 lines
2.3 KiB
SCSS
101 lines
2.3 KiB
SCSS
@import "colors";
|
|
@import "constants";
|
|
|
|
.dossier-header {
|
|
.container {
|
|
padding-bottom: $default-padding;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 22px;
|
|
|
|
.icon.folder {
|
|
vertical-align: -3px;
|
|
}
|
|
}
|
|
|
|
.dossier-form-actions {
|
|
margin-top: $default-padding;
|
|
margin-bottom: $default-padding;
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
.dossier-edit {
|
|
.prologue {
|
|
margin: (1.5 * $default-padding) 0;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: baseline;
|
|
|
|
.mandatory-explanation {
|
|
flex-grow: 1; // Push the "notice" button to the right
|
|
flex-shrink: 1; // Allow the text to shrink
|
|
margin-bottom: $default-spacer; // Leave space when the "notice" button wraps under the text
|
|
}
|
|
|
|
.button.notice {
|
|
flex-shrink: 0; // Display the button label on a single line
|
|
}
|
|
}
|
|
|
|
.warning {
|
|
margin-bottom: 20px;
|
|
background-color: #f9b91666;
|
|
padding: 20px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.send-dossier-actions-bar {
|
|
// scss-lint:disable VendorPrefix
|
|
position: -webkit-sticky; // This is needed on Safari (tested on 12.1)
|
|
// scss-lint:enable VendorPrefix
|
|
position: sticky;
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
margin-top: $default-padding;
|
|
margin-left: -$default-padding;
|
|
margin-right: -$default-padding;
|
|
margin-bottom: 0;
|
|
padding-top: 0;
|
|
padding-bottom: $default-spacer;
|
|
padding-right: $default-padding;
|
|
padding-left: $default-padding;
|
|
background: #FFFFFF;
|
|
border: 1px solid #CCCCCC;
|
|
border-top-left-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
border-bottom: none;
|
|
|
|
.button:not(:small) {
|
|
min-height: 38px;
|
|
line-height: 16px;
|
|
}
|
|
|
|
// If there are more than one button, align the "Send" button to the right
|
|
.button:not(:first-child).send {
|
|
margin-left: auto;
|
|
}
|
|
|
|
// Normal layout
|
|
@media (min-width: 500px) {
|
|
padding-top: $default-spacer * 2;
|
|
padding-bottom: $default-spacer * 2;
|
|
}
|
|
|
|
// Compact layout
|
|
@media (max-width: 500px) {
|
|
padding-top: $default-spacer;
|
|
padding-bottom: $default-spacer;
|
|
}
|
|
}
|
|
|
|
.autosave {
|
|
// Make the autosave block occupy the entire horizontal space,
|
|
// to ensure the failed state has room to display its content.
|
|
flex-grow: 1;
|
|
}
|
|
}
|