|
|
|
@ -2,7 +2,7 @@
|
|
|
|
|
@use "../globals" as *;
|
|
|
|
|
|
|
|
|
|
/*form group-alt*/
|
|
|
|
|
.form-group-alt {
|
|
|
|
|
.form-group-search {
|
|
|
|
|
--height: 2.5rem;
|
|
|
|
|
|
|
|
|
|
//border: 1px solid var(--bg-core-primary);
|
|
|
|
@ -18,26 +18,30 @@
|
|
|
|
|
transition: $transition;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*INPUT RESET*/
|
|
|
|
|
.form-group-alt input {
|
|
|
|
|
input {
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
background: transparent;
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Chrome, Safari, Edge, Opera */
|
|
|
|
|
.form-group-alt input::-webkit-outer-spin-button,
|
|
|
|
|
.form-group-alt input::-webkit-inner-spin-button {
|
|
|
|
|
|
|
|
|
|
/* Remove Arrows/Spinners Chrome, Safari, Edge, Opera */
|
|
|
|
|
input::-webkit-outer-spin-button,
|
|
|
|
|
input::-webkit-inner-spin-button {
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Firefox */
|
|
|
|
|
.form-group-alt input[type="number"] {
|
|
|
|
|
/* Remove Arrows/Spinners Firefox */
|
|
|
|
|
input[type="number"] {
|
|
|
|
|
-moz-appearance: textfield;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* clears the 'X' in search*/
|
|
|
|
|
input[type="search"]::-webkit-search-decoration,
|
|
|
|
|
input[type="search"]::-webkit-search-cancel-button,
|
|
|
|
@ -47,7 +51,7 @@ input[type="search"]::-webkit-search-results-decoration {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*focus within*/
|
|
|
|
|
.form-group-alt:focus-within {
|
|
|
|
|
.form-group-search:focus-within {
|
|
|
|
|
background-color: var(--bg-core-primary-lighten);
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
|
|
|
@ -79,14 +83,14 @@ input[type="search"] {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*SEARCH CONTENT*/
|
|
|
|
|
.form-group-alt .input-group-content {
|
|
|
|
|
.form-group-search .input-group-content {
|
|
|
|
|
height: var(--height);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-group-alt .input-leading-icon {
|
|
|
|
|
.form-group-search .input-leading-icon {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
@ -98,7 +102,7 @@ input[type="search"] {
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-group-alt .input-cta-icon {
|
|
|
|
|
.form-group-search .input-cta-icon {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
@ -119,22 +123,29 @@ input[type="search"] {
|
|
|
|
|
|
|
|
|
|
.input-cta-icon-more {
|
|
|
|
|
position: absolute;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
right: -7px;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
transition: all 0.35s cubic-bezier(0.6, -1.25, 0.6, 2.25);
|
|
|
|
|
}
|
|
|
|
|
.form-group-alt .input-area {
|
|
|
|
|
|
|
|
|
|
.form-group-search .input-cta-icon:hover .input-cta-icon-more{
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-group-search .input-area {
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-group-alt input {
|
|
|
|
|
.form-group-search input {
|
|
|
|
|
&:focus-visible,
|
|
|
|
|
&.focus {
|
|
|
|
|
outline: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-group-alt .input-cta-icon:hover {
|
|
|
|
|
.form-group-search .input-cta-icon:hover {
|
|
|
|
|
background-color: var(--bg-core-primary-lighten);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|