soapbox/app/styles/components/search.scss

63 lines
1.0 KiB
SCSS
Raw Normal View History

2020-06-03 02:11:01 +00:00
.search {
position: relative;
}
.search__icon {
&::-moz-focus-inner {
border: 0;
}
&::-moz-focus-inner,
&:focus {
outline: 0 !important;
}
2021-09-12 23:54:38 +00:00
.svg-icon {
@apply right-4 rtl:left-4 rtl:right-auto;
2020-06-03 02:11:01 +00:00
@include font-size(16);
cursor: default;
display: inline-block;
position: absolute;
top: 50%;
transform: translateY(-50%);
2020-06-03 02:11:01 +00:00
z-index: 2;
width: 18px;
height: 18px;
2020-06-07 03:55:00 +00:00
color: var(--primary-text-color--faint);
2020-06-03 02:11:01 +00:00
opacity: 0;
pointer-events: none;
&.active {
pointer-events: auto;
opacity: 1;
}
}
.svg-icon--search.active {
pointer-events: none;
}
.svg-icon--backspace {
2020-06-03 02:11:01 +00:00
cursor: pointer;
color: var(--highlight-text-color);
width: 22px;
height: 22px;
&:hover {
color: var(--brand-color);
}
2020-06-03 02:11:01 +00:00
}
}
.column {
.search {
padding: 10px 15px;
background-color: var(--foreground-color);
border-bottom: 1px solid hsla(var(--primary-text-color_hsl), 0.2);
}
2021-11-01 03:21:19 +00:00
.search__icon .svg-icon {
right: 24px;
}
}