mirror of https://github.com/Chocobozzz/PeerTube
soft border-radius for search typeahead suggestions
parent
26d6bf6533
commit
6567e5a796
|
@ -38,11 +38,17 @@
|
||||||
#typeahead-instructions,
|
#typeahead-instructions,
|
||||||
li.suggestion {
|
li.suggestion {
|
||||||
border: 1px solid pvar(--mainBackgroundColor);
|
border: 1px solid pvar(--mainBackgroundColor);
|
||||||
border-bottom-right-radius: 3px;
|
|
||||||
border-bottom-left-radius: 3px;
|
|
||||||
background: pvar(--mainBackgroundColor);
|
background: pvar(--mainBackgroundColor);
|
||||||
transition: .3s ease;
|
transition: .3s ease;
|
||||||
transition-property: box-shadow;
|
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,
|
#typeahead-help,
|
||||||
|
|
Loading…
Reference in New Issue