mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-18 15:23:38 +01:00
Header button updates.
This commit is contained in:
parent
3c0b718fd7
commit
5524d504f4
@ -61,7 +61,7 @@
|
||||
}
|
||||
|
||||
.light:hover {
|
||||
background: var(--gray75);
|
||||
background: inherit;
|
||||
}
|
||||
|
||||
.button:disabled {
|
||||
|
@ -9,6 +9,7 @@ import useDocumentClick from 'hooks/useDocumentClick';
|
||||
import User from 'assets/user.svg';
|
||||
import Chevron from 'assets/chevron-down.svg';
|
||||
import styles from './UserButton.module.css';
|
||||
import classNames from 'classnames';
|
||||
|
||||
export default function UserButton() {
|
||||
const [showMenu, setShowMenu] = useState(false);
|
||||
@ -52,7 +53,7 @@ export default function UserButton() {
|
||||
<div ref={ref} className={styles.container}>
|
||||
<Button
|
||||
icon={<User />}
|
||||
className={styles.button}
|
||||
className={classNames({ [styles.open]: showMenu })}
|
||||
onClick={() => setShowMenu(state => !state)}
|
||||
size="large"
|
||||
variant="light"
|
||||
|
@ -4,11 +4,6 @@
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.button {
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
.username {
|
||||
border-bottom: 1px solid var(--gray500);
|
||||
}
|
||||
@ -20,3 +15,11 @@
|
||||
.menu {
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.open {
|
||||
background: var(--gray200);
|
||||
}
|
||||
|
||||
.open:hover {
|
||||
background: var(--gray200);
|
||||
}
|
||||
|
@ -36,8 +36,8 @@ export default function Header() {
|
||||
</div>
|
||||
<div className="col-12 col-md-12 col-lg-3">
|
||||
<div className={styles.buttons}>
|
||||
<LanguageButton menuAlign="right" />
|
||||
<ThemeButton />
|
||||
<LanguageButton menuAlign="right" />
|
||||
{user && <UserButton />}
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,4 +1,5 @@
|
||||
import React, { useState, useRef } from 'react';
|
||||
import classNames from 'classnames';
|
||||
import Head from 'next/head';
|
||||
import Menu from 'components/common/Menu';
|
||||
import Button from 'components/common/Button';
|
||||
@ -46,7 +47,12 @@ export default function LanguageButton({ menuPosition = 'bottom', menuAlign = 'l
|
||||
)}
|
||||
</Head>
|
||||
<div ref={ref} className={styles.container}>
|
||||
<Button icon={<Globe />} onClick={toggleMenu} variant="light">
|
||||
<Button
|
||||
icon={<Globe />}
|
||||
className={classNames({ [styles.open]: showMenu })}
|
||||
onClick={toggleMenu}
|
||||
variant="light"
|
||||
>
|
||||
<div className={styles.text}>{selectedLocale}</div>
|
||||
</Button>
|
||||
{showMenu && (
|
||||
|
@ -11,3 +11,11 @@
|
||||
.text {
|
||||
font-size: var(--font-size-small);
|
||||
}
|
||||
|
||||
.open {
|
||||
background: var(--gray200);
|
||||
}
|
||||
|
||||
.open:hover {
|
||||
background: var(--gray200);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user