mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
(core) Fix "Column Label and ID" widget to avoid getting truncated on some browsers
Summary: The widget showing column label, ID, and a button for keeping them linked, used to get truncated depending on the default size of inputs. This makes it resize dynamically based on the width of the creator panel. Test Plan: CSS-only change, tested manually on FF and Chrome. Reviewers: alexmojaki Reviewed By: alexmojaki Differential Revision: https://phab.getgrist.com/D3165
This commit is contained in:
parent
cf9e0585a9
commit
ef1fc916e6
@ -396,6 +396,8 @@ const cssToggleButton = styled(cssIconButton, `
|
|||||||
const cssColLabelBlock = styled('div', `
|
const cssColLabelBlock = styled('div', `
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
flex: auto;
|
||||||
|
min-width: 80px;
|
||||||
`);
|
`);
|
||||||
|
|
||||||
const cssColTieBlock = styled('div', `
|
const cssColTieBlock = styled('div', `
|
||||||
|
Loading…
Reference in New Issue
Block a user