- Revamp the super admin design - Introduce a new settings page for support and billing settings - Move the access tokens into users, agent bots and platform app show pages Co-authored-by: Sojan <sojan@pepalo.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
45 lines
790 B
SCSS
45 lines
790 B
SCSS
.search {
|
|
margin-left: auto;
|
|
margin-right: 1.25rem;
|
|
max-width: 27.5rem;
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.search__input {
|
|
background: $grey-1;
|
|
padding-left: $space-normal * 2.5;
|
|
padding-right: $space-normal * 2.5;
|
|
}
|
|
|
|
.search__eyeglass-icon {
|
|
fill: $grey-7;
|
|
height: $space-normal;
|
|
left: $space-normal;
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: $space-normal;
|
|
}
|
|
|
|
.search__clear-link {
|
|
height: $space-normal;
|
|
position: absolute;
|
|
right: $space-normal * 0.75;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: $space-normal;
|
|
}
|
|
|
|
.search__clear-icon {
|
|
fill: $grey-5;
|
|
height: $space-normal;
|
|
position: absolute;
|
|
transition: fill $base-duration $base-timing;
|
|
width: $space-normal;
|
|
|
|
&:hover {
|
|
fill: $action-color;
|
|
}
|
|
}
|