mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Use the browser icon for "open original"
This commit is contained in:
parent
c20d8e6b4d
commit
d2bf31d9c5
2 changed files with 7 additions and 3 deletions
|
|
@ -28,7 +28,7 @@ export const HighlightHoverActions = (props: HighlightHoverActionsProps) => {
|
|||
<Box
|
||||
css={{
|
||||
height: '33px',
|
||||
width: '135px',
|
||||
minWidth: '150px',
|
||||
bg: '$thBackground',
|
||||
display: 'flex',
|
||||
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ import { NotebookIcon } from '../../elements/icons/NotebookIcon'
|
|||
import { TrashIcon } from '../../elements/icons/TrashIcon'
|
||||
import { LabelIcon } from '../../elements/icons/LabelIcon'
|
||||
import { UnarchiveIcon } from '../../elements/icons/UnarchiveIcon'
|
||||
import { BrowserIcon } from '../../elements/icons/BrowserIcon'
|
||||
|
||||
type LibraryHoverActionsProps = {
|
||||
viewer: UserBasicData
|
||||
|
|
@ -31,7 +32,7 @@ export const LibraryHoverActions = (props: LibraryHoverActionsProps) => {
|
|||
overflow: 'clip',
|
||||
|
||||
height: '33px',
|
||||
width: '184px',
|
||||
width: '200px',
|
||||
bg: '$thBackground',
|
||||
display: 'flex',
|
||||
|
||||
|
|
@ -120,7 +121,10 @@ export const LibraryHoverActions = (props: LibraryHoverActionsProps) => {
|
|||
event.stopPropagation()
|
||||
}}
|
||||
>
|
||||
<Share size={21} color={theme.colors.thNotebookSubtle.toString()} />
|
||||
<BrowserIcon
|
||||
size={21}
|
||||
color={theme.colors.thNotebookSubtle.toString()}
|
||||
/>
|
||||
</Button>
|
||||
<CardMenu
|
||||
item={props.item}
|
||||
|
|
|
|||
Loading…
Reference in a new issue