You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
591 B
26 lines
591 B
/** |
|
* @file |
|
* Visual styles for autocomplete input field. |
|
*/ |
|
|
|
@import "../base/media-queries.pcss.css"; |
|
|
|
[type].form-autocomplete { |
|
padding-inline-end: var(--sp3); |
|
background-color: var(--color--white); |
|
background-image: url("../../images/magnifying-glass.svg"); |
|
background-repeat: no-repeat; |
|
background-position: right var(--sp1) center; /* LTR */ |
|
|
|
&:disabled { |
|
background-color: var(--color--gray-100); |
|
} |
|
|
|
&.ui-autocomplete-loading { |
|
background-image: url("../../images/throbber.svg"); |
|
} |
|
|
|
&:dir(rtl) { |
|
background-position: left var(--sp1) center; |
|
} |
|
}
|
|
|