mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #20709 from overleaf/dp-search-wrapping
Wrap search controls on small editor widths GitOrigin-RevId: 513d046ba2951daf13385f48b73704e6feccd7d0
This commit is contained in:
parent
4480a986a3
commit
b2dab4b1c0
1 changed files with 6 additions and 0 deletions
|
@ -265,6 +265,7 @@ const searchFormTheme = EditorView.theme({
|
||||||
'inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%)',
|
'inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%)',
|
||||||
'--ol-cm-search-form-error-shadow':
|
'--ol-cm-search-form-error-shadow':
|
||||||
'inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px var(--input-shadow-danger-color)',
|
'inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px var(--input-shadow-danger-color)',
|
||||||
|
containerType: 'inline-size',
|
||||||
},
|
},
|
||||||
'.ol-cm-search-controls': {
|
'.ol-cm-search-controls': {
|
||||||
display: 'grid',
|
display: 'grid',
|
||||||
|
@ -272,6 +273,11 @@ const searchFormTheme = EditorView.theme({
|
||||||
gridTemplateRows: 'auto auto',
|
gridTemplateRows: 'auto auto',
|
||||||
gap: '10px',
|
gap: '10px',
|
||||||
},
|
},
|
||||||
|
'@container (max-width: 450px)': {
|
||||||
|
'.ol-cm-search-controls': {
|
||||||
|
gridTemplateColumns: 'auto',
|
||||||
|
},
|
||||||
|
},
|
||||||
'.ol-cm-search-form-row': {
|
'.ol-cm-search-form-row': {
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
gap: '10px',
|
gap: '10px',
|
||||||
|
|
Loading…
Reference in a new issue