UX: Revert grey search inputs (#24459)

* UX: search menu undo background

* UX: undo cmd-k bg + add focus
This commit is contained in:
chapoi 2023-11-20 13:45:59 +01:00 committed by GitHub
parent f2d3e3ed3f
commit ba61ea17b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -24,7 +24,8 @@ $search-pad-horizontal: 0.5em;
position: relative;
display: flex;
align-items: center;
background: var(--secondary-very-high);
background: var(--secondary);
border: 1px solid var(--primary-400);
border-radius: var(--d-input-border-radius);
margin: 1px;
padding: 0.25rem;

View File

@ -235,12 +235,17 @@
.chat-message-creator__search-input {
display: flex;
align-items: center;
background: var(--secondary-very-high);
border: 1px solid var(--primary-400);
width: 100%;
box-sizing: border-box;
height: 42px;
padding: 0 0.5rem;
&:focus,
&:focus-within {
@include default-focus();
}
&-container {
display: flex;
flex-grow: 1;