Add css to auto-resize columns

I'm not totally confident in all this CSS but it does what it's supposed to. Auto-resizing columns, which makes the interface slightly more usable for me.
staging
Lumb 2019-06-23 16:52:44 +00:00 committed by multiple creatures
parent 6d8357a6f0
commit 2e4bc1a64d
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
.drawer{
padding-top: 10px;
padding-bottom: 0;
flex: 0 1 300px;
max-width: 300px !important;
min-width: 300px !important;
}
.column {
min-width: 300px !important;
max-width: 480px !important;
flex: 2 1 auto !important;
filter: initial;
}
.column:last-child {
flex: 1 2 auto !important;
}
.columns-area {
display: flex;
flex-direction: row;
}
.compose-form .compose-form__modifiers .compose-form__upload,
.composer--upload_form--item {
flex: 1 0 100%;
}