mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-27 03:35:50 +03:00
Reuse style for search page, time to surface it
This commit is contained in:
parent
068a49abce
commit
62eb6d6b30
3 changed files with 32 additions and 8 deletions
28
src/app.css
28
src/app.css
|
@ -1223,27 +1223,47 @@ ul.link-list {
|
|||
list-style: none;
|
||||
padding: 16px;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1px;
|
||||
}
|
||||
ul.link-list li {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
ul.link-list li a {
|
||||
--radius: 8px;
|
||||
display: block;
|
||||
background-color: var(--bg-faded-color);
|
||||
border-radius: 8px;
|
||||
line-height: 1.25;
|
||||
padding: 12px;
|
||||
text-decoration: none;
|
||||
line-height: 1.4;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
font-weight: 500;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
ul.link-list li:first-child a {
|
||||
border-top-left-radius: var(--radius);
|
||||
border-top-right-radius: var(--radius);
|
||||
}
|
||||
ul.link-list li:last-child a {
|
||||
border-bottom-left-radius: var(--radius);
|
||||
border-bottom-right-radius: var(--radius);
|
||||
}
|
||||
ul.link-list li a:is(:hover, :focus) {
|
||||
color: var(--text-color);
|
||||
}
|
||||
ul.link-list li a:active {
|
||||
filter: brightness(0.9);
|
||||
}
|
||||
ul.link-list li a * {
|
||||
vertical-align: middle;
|
||||
}
|
||||
ul.link-list li a .icon {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
@media (min-width: 40em) {
|
||||
ul.link-list li a {
|
||||
|
|
|
@ -41,9 +41,9 @@ function NavMenu(props) {
|
|||
<Icon icon="heart" size="l" /> <span>Favourites</span>
|
||||
</MenuLink>
|
||||
<MenuDivider />
|
||||
{/* <MenuLink to={`/search`}>
|
||||
<MenuLink to={`/search`}>
|
||||
<Icon icon="search" size="l" /> <span>Search</span>
|
||||
</MenuLink> */}
|
||||
</MenuLink>
|
||||
<MenuLink to={`/${instance}/p/l`}>
|
||||
<Icon icon="group" size="l" /> <span>Local</span>
|
||||
</MenuLink>
|
||||
|
|
|
@ -4,6 +4,7 @@ import { useEffect, useRef, useState } from 'preact/hooks';
|
|||
import { useSearchParams } from 'react-router-dom';
|
||||
|
||||
import Avatar from '../components/avatar';
|
||||
import Icon from '../components/icon';
|
||||
import Link from '../components/link';
|
||||
import Loader from '../components/loader';
|
||||
import Menu from '../components/menu';
|
||||
|
@ -54,6 +55,8 @@ function Search() {
|
|||
const { q } = e.target;
|
||||
if (q.value) {
|
||||
setSearchParams({ q: q.value });
|
||||
} else {
|
||||
setSearchParams({});
|
||||
}
|
||||
}}
|
||||
>
|
||||
|
@ -91,7 +94,7 @@ function Search() {
|
|||
)}
|
||||
<h2 class="timeline-header">Hashtags</h2>
|
||||
{hashtagResults.length > 0 ? (
|
||||
<ul>
|
||||
<ul class="link-list">
|
||||
{hashtagResults.map((hashtag) => (
|
||||
<li>
|
||||
<Link
|
||||
|
@ -101,7 +104,8 @@ function Search() {
|
|||
: `/t/${hashtag.name}`
|
||||
}
|
||||
>
|
||||
#{hashtag.name}
|
||||
<Icon icon="hashtag" />
|
||||
<span>{hashtag.name}</span>
|
||||
</Link>
|
||||
</li>
|
||||
))}
|
||||
|
|
Loading…
Reference in a new issue