Style tweaks
This commit is contained in:
parent
5f8cdfd886
commit
cd02f1a6c3
3 changed files with 14 additions and 3 deletions
|
@ -27,6 +27,9 @@ const Container = styled.div`
|
||||||
|
|
||||||
const Message = styled.div`
|
const Message = styled.div`
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
|
& a {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
`
|
`
|
||||||
|
|
||||||
const ChooseStateRow = styled.div`
|
const ChooseStateRow = styled.div`
|
||||||
|
@ -100,7 +103,15 @@ const InConflict: React.FC<{
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Container>
|
<Container>
|
||||||
<Message>Browser state is not based on disk state.</Message>
|
<Message>
|
||||||
|
Browser state is not based on disk state.{' '}
|
||||||
|
<a
|
||||||
|
href="https://docs.theatrejs.com/export.html#conflict"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
Learn more.
|
||||||
|
</a>
|
||||||
|
</Message>
|
||||||
<ChooseStateRow>
|
<ChooseStateRow>
|
||||||
{browserStateNode}
|
{browserStateNode}
|
||||||
<DetailPanelButton
|
<DetailPanelButton
|
||||||
|
|
|
@ -141,7 +141,7 @@ const OutlinePanel: React.FC<{}> = (props) => {
|
||||||
}, [])
|
}, [])
|
||||||
|
|
||||||
const [errorTooltip, triggerButtonRef] = useTooltip(
|
const [errorTooltip, triggerButtonRef] = useTooltip(
|
||||||
{enabled: conflicts.length > 0, delay: 0},
|
{enabled: conflicts.length > 0, enterDelay: 0},
|
||||||
() => (
|
() => (
|
||||||
<ErrorTooltip>
|
<ErrorTooltip>
|
||||||
{conflicts.length === 1
|
{conflicts.length === 1
|
||||||
|
|
|
@ -11,7 +11,7 @@ import styled from 'styled-components'
|
||||||
const ConflictNotice = styled.div`
|
const ConflictNotice = styled.div`
|
||||||
color: #ff6363;
|
color: #ff6363;
|
||||||
margin-left: 11px;
|
margin-left: 11px;
|
||||||
background: #ff00002b;
|
background: #4c282d;
|
||||||
padding: 2px 8px;
|
padding: 2px 8px;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
|
|
Loading…
Reference in a new issue