Fix Bug 50832
This commit is contained in:
parent
670910d5f4
commit
005bb841dc
|
@ -56,6 +56,20 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.add-popup {
|
||||||
|
.view{
|
||||||
|
.block-title{
|
||||||
|
margin-bottom: 0;
|
||||||
|
margin-top: 8px;
|
||||||
|
}
|
||||||
|
.inputs-list {
|
||||||
|
ul:after, :before{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Buttons
|
// Buttons
|
||||||
.segmented {
|
.segmented {
|
||||||
.decrement, .increment {
|
.decrement, .increment {
|
||||||
|
|
|
@ -11,7 +11,7 @@ const PageLinkSettings = props => {
|
||||||
<Page>
|
<Page>
|
||||||
<Navbar title={_t.textLinkSettings} backLink={_t.textBack}></Navbar>
|
<Navbar title={_t.textLinkSettings} backLink={_t.textBack}></Navbar>
|
||||||
<BlockTitle>{_t.textAddress}</BlockTitle>
|
<BlockTitle>{_t.textAddress}</BlockTitle>
|
||||||
<List>
|
<List className='inputs-list'>
|
||||||
<ListInput
|
<ListInput
|
||||||
type='text'
|
type='text'
|
||||||
placeholder={_t.textImageURL}
|
placeholder={_t.textImageURL}
|
||||||
|
|
|
@ -179,7 +179,7 @@ const AddOther = props => {
|
||||||
<Icon slot="media" icon="icon-pagenumber"></Icon>
|
<Icon slot="media" icon="icon-pagenumber"></Icon>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
{(isShape || isChart) ? null :
|
{(isShape || isChart) ? null :
|
||||||
[ <ListItem title={_t.textBreak} link={'/add-break/'} routeProps={{
|
[ <ListItem key='break' title={_t.textBreak} link={'/add-break/'} routeProps={{
|
||||||
onPageBreak: props.onPageBreak,
|
onPageBreak: props.onPageBreak,
|
||||||
onColumnBreak: props.onColumnBreak,
|
onColumnBreak: props.onColumnBreak,
|
||||||
onInsertSectionBreak: props.onInsertSectionBreak
|
onInsertSectionBreak: props.onInsertSectionBreak
|
||||||
|
@ -187,7 +187,7 @@ const AddOther = props => {
|
||||||
<Icon slot="media" icon="icon-sectionbreak"></Icon>
|
<Icon slot="media" icon="icon-sectionbreak"></Icon>
|
||||||
</ListItem>,
|
</ListItem>,
|
||||||
|
|
||||||
<ListItem title={_t.textFootnote} link={'/add-footnote/'} routeProps={{
|
<ListItem key='footnote' title={_t.textFootnote} link={'/add-footnote/'} routeProps={{
|
||||||
getFootnoteProps: props.getFootnoteProps,
|
getFootnoteProps: props.getFootnoteProps,
|
||||||
getFootnoteStartAt: props.getFootnoteStartAt,
|
getFootnoteStartAt: props.getFootnoteStartAt,
|
||||||
onFootnoteStartAt: props.onFootnoteStartAt,
|
onFootnoteStartAt: props.onFootnoteStartAt,
|
||||||
|
|
|
@ -11,7 +11,7 @@ const PageLinkSettings = props => {
|
||||||
<Page>
|
<Page>
|
||||||
<Navbar title={_t.textLinkSettings} backLink={_t.textBack}></Navbar>
|
<Navbar title={_t.textLinkSettings} backLink={_t.textBack}></Navbar>
|
||||||
<BlockTitle>{_t.textAddress}</BlockTitle>
|
<BlockTitle>{_t.textAddress}</BlockTitle>
|
||||||
<List>
|
<List className='inputs-list'>
|
||||||
<ListInput
|
<ListInput
|
||||||
type='text'
|
type='text'
|
||||||
placeholder={_t.textImageURL}
|
placeholder={_t.textImageURL}
|
||||||
|
|
|
@ -27,7 +27,7 @@ const PageLinkSettings = props => {
|
||||||
<Page>
|
<Page>
|
||||||
<Navbar title={_t.textLinkSettings} backLink={_t.textBack}></Navbar>
|
<Navbar title={_t.textLinkSettings} backLink={_t.textBack}></Navbar>
|
||||||
<BlockTitle>{_t.textAddress}</BlockTitle>
|
<BlockTitle>{_t.textAddress}</BlockTitle>
|
||||||
<List>
|
<List className='inputs-list'>
|
||||||
<ListInput
|
<ListInput
|
||||||
type='text'
|
type='text'
|
||||||
placeholder={_t.textImageURL}
|
placeholder={_t.textImageURL}
|
||||||
|
|
Loading…
Reference in a new issue