soft border-radius for search typeahead suggestions
This commit is contained in:
parent
26d6bf6533
commit
6567e5a796
|
@ -38,11 +38,17 @@
|
|||
#typeahead-instructions,
|
||||
li.suggestion {
|
||||
border: 1px solid pvar(--mainBackgroundColor);
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
background: pvar(--mainBackgroundColor);
|
||||
transition: .3s ease;
|
||||
transition-property: box-shadow;
|
||||
|
||||
// soft border-radius for the last suggestion and the link inside
|
||||
&:last-of-type {
|
||||
&, & ::ng-deep a {
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#typeahead-help,
|
||||
|
|
Loading…
Reference in New Issue