X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/a9226097c8eea0591fd3249f62a71becc6d2be93..4727eb31e50fa1571c83c4be5e228534b07574a7:/src/wolnelektury/static/2022/styles/components/_search.scss diff --git a/src/wolnelektury/static/2022/styles/components/_search.scss b/src/wolnelektury/static/2022/styles/components/_search.scss index 115101410..3e77e40ce 100644 --- a/src/wolnelektury/static/2022/styles/components/_search.scss +++ b/src/wolnelektury/static/2022/styles/components/_search.scss @@ -140,3 +140,98 @@ } } } + + +.ui-autocomplete { + .ui-menu-item { + &:before { + } + + span { + border-radius: 18px; + padding: 0px 10px; + } + + &.type-info { + &:before { + content: '\1f6c8'; + position: absolute; + left: 0; + width:36px; + line-height: 36px; + text-align: center; + } + } + &.type-theme { + &:before { + content: '☆'; + position: absolute; + left: 0; + width:36px; + line-height: 36px; + text-align: center; + } + } + &.type-genre { + a, a:hover { + span { + color: black; + background: $wl-green; + } + } + } + &.type-epoch { + a, a:hover { + span { + background: $wl-teal; + color: white; + } + } + } + &.type-kind { + a, a:hover { + span { + color: black; + background: $wl-red; + } + } + } + &.type-set { + &:before { + content: ''; + position: absolute; + left: 0; + width:36px; + line-height: 36px; + text-align: center; + font-family: 'wl' !important; + color: $wl-red; + } + } + + a.ui-menu-item-wrapper { + display: flex; + transition: none; + padding: 0; + align-items: center; + + &:hover { + text-decoration: none; + } + + div { + width: 36px; + height: 36px; + display: flex; + align-items: center; + justify-content: center; + margin-right: 5px; + img { + max-height: 36px; + max-width: 36px; + } + } + } + } +} +