mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-04-04 23:53:46 +03:00
Change from 'x' to '<' on Status page
This commit is contained in:
parent
2f24713d71
commit
a029c7ccae
4 changed files with 9 additions and 6 deletions
src
|
@ -72,7 +72,6 @@ a.mention span {
|
||||||
|
|
||||||
.deck header {
|
.deck header {
|
||||||
min-height: 3em;
|
min-height: 3em;
|
||||||
padding: 0 8px;
|
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0;
|
top: 0;
|
||||||
background-color: var(--bg-blur-color);
|
background-color: var(--bg-blur-color);
|
||||||
|
|
|
@ -41,6 +41,7 @@ const ICONS = {
|
||||||
popout: 'mingcute:external-link-line',
|
popout: 'mingcute:external-link-line',
|
||||||
popin: ['mingcute:external-link-line', '180deg'],
|
popin: ['mingcute:external-link-line', '180deg'],
|
||||||
plus: 'mingcute:add-circle-line',
|
plus: 'mingcute:add-circle-line',
|
||||||
|
'chevron-left': 'mingcute:left-line',
|
||||||
};
|
};
|
||||||
|
|
||||||
function Icon({ icon, size = 'm', alt, title, class: className = '' }) {
|
function Icon({ icon, size = 'm', alt, title, class: className = '' }) {
|
||||||
|
|
|
@ -3,8 +3,9 @@
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
animation: slow-appear .3s ease-in-out 1s both;
|
animation: slow-appear 0.3s ease-in-out 1s both;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
margin: 8px;
|
||||||
}
|
}
|
||||||
@keyframes slow-appear {
|
@keyframes slow-appear {
|
||||||
0% {
|
0% {
|
||||||
|
|
|
@ -167,12 +167,14 @@ function StatusPage({ id }) {
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<header>
|
<header>
|
||||||
|
<div>
|
||||||
|
<Link class="button plain deck-close" href={closeLink}>
|
||||||
|
<Icon icon="chevron-left" size="xl" />
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
<h1>Status</h1>
|
<h1>Status</h1>
|
||||||
<div class="header-side">
|
<div class="header-side">
|
||||||
<Loader hidden={uiState !== 'loading'} />
|
<Loader hidden={uiState !== 'loading'} />
|
||||||
<Link class="button plain deck-close" href={closeLink}>
|
|
||||||
<Icon icon="x" size="xl" />
|
|
||||||
</Link>
|
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<ul class="timeline flat contextual">
|
<ul class="timeline flat contextual">
|
||||||
|
|
Loading…
Add table
Reference in a new issue