mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
(core) Expanding search textbox to full height.
Summary: Expanding search input field to full available height, to make the clickable area bigger. Test Plan: Manual tests on browserstack Reviewers: paulfitz Reviewed By: paulfitz Differential Revision: https://phab.getgrist.com/D3145
This commit is contained in:
parent
05eb7afcb6
commit
745ddc21ac
@ -24,7 +24,7 @@ const searchWrapper = styled('div', `
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid transparent;
|
||||
padding: 16px;
|
||||
padding: 0px 16px;
|
||||
width: 50px;
|
||||
height: 100%;
|
||||
max-height: 50px;
|
||||
@ -48,6 +48,7 @@ const expandedSearch = styled('div', `
|
||||
align-items: center;
|
||||
width: 0;
|
||||
opacity: 0;
|
||||
align-self: stretch;
|
||||
transition: width ${EXPAND_TIME}s, opacity ${EXPAND_TIME / 2}s ${EXPAND_TIME / 2}s;
|
||||
.${searchWrapper.className}-expand > & {
|
||||
width: auto;
|
||||
@ -63,6 +64,7 @@ const searchInput = styled(input, `
|
||||
padding: 0;
|
||||
padding-left: 4px;
|
||||
box-sizing: border-box;
|
||||
align-self: stretch;
|
||||
width: 0;
|
||||
transition: width ${EXPAND_TIME}s;
|
||||
.${searchWrapper.className}-expand & {
|
||||
|
Loading…
Reference in New Issue
Block a user