99 lines
3.5 KiB
HTML
99 lines
3.5 KiB
HTML
<?xml version="1.0"?>
|
|
<!-- prettier-ignore -->
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
<!-- prettier-ignore -->
|
|
<?xml-stylesheet href="chrome://zotero/skin/zotero.css" type="text/css"?>
|
|
<!-- prettier-ignore -->
|
|
<?xml-stylesheet href="chrome://zotero-platform/content/zotero.css" type="text/css"?>
|
|
<!-- prettier-ignore -->
|
|
<?xml-stylesheet href="chrome://__addonRef__/content/styles/toolbar.css" type="text/css"?>
|
|
<!-- prettier-ignore -->
|
|
<?xml-stylesheet href="chrome://__addonRef__/content/styles/linkNote.css" type="text/css"?>
|
|
<!-- prettier-ignore -->
|
|
<!DOCTYPE window>
|
|
<window
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
id="bn-note-picker"
|
|
windowtype="__addonRef__-note-picker"
|
|
persist="screenX screenY width height sizemode"
|
|
style="min-width: 40em"
|
|
>
|
|
<script src="chrome://zotero/content/include.js"></script>
|
|
<script src="chrome://zotero/content/customElements.js"></script>
|
|
<script src="chrome://__addonRef__/content/scripts/customElements.js"></script>
|
|
<script src="chrome://__addonRef__/content/scripts/linkNote.js"></script>
|
|
|
|
<dialog buttons="accept, cancel">
|
|
<hbox id="top-container" class="container">
|
|
<bn-note-picker></bn-note-picker>
|
|
<vbox id="bn-select-note-outline-container" class="container">
|
|
<hbox class="toolbar">
|
|
<hbox class="toolbar-start">
|
|
<html:span class="toolbar-header content"
|
|
>Step 2. Insert to:
|
|
</html:span>
|
|
<html:span
|
|
id="selected-outline-title"
|
|
class="toolbar-header highlight"
|
|
></html:span>
|
|
</hbox>
|
|
<hbox class="toolbar-middle"></hbox>
|
|
<hbox class="toolbar-end"></hbox>
|
|
</hbox>
|
|
<vbox
|
|
id="bn-select-note-outline-content"
|
|
class="container virtualized-table-container"
|
|
>
|
|
<html:div id="bn-select-note-outline-tree"></html:div>
|
|
</vbox>
|
|
<hbox id="bn-link-insert-position-container">
|
|
<label>At section</label>
|
|
<radiogroup id="bn-link-insert-position" orient="horizontal">
|
|
<radio
|
|
id="bn-link-insert-position-top"
|
|
label="Start"
|
|
value="start"
|
|
></radio>
|
|
<radio
|
|
id="bn-link-insert-position-bottom"
|
|
label="End"
|
|
value="end"
|
|
></radio>
|
|
</radiogroup>
|
|
</hbox>
|
|
</vbox>
|
|
<vbox id="bn-note-preview-container" class="container">
|
|
<hbox class="toolbar">
|
|
<hbox class="toolbar-start">
|
|
<html:span class="toolbar-header content"
|
|
>Step 3. Preview:
|
|
</html:span>
|
|
<html:span
|
|
id="preview-note-from-title"
|
|
class="toolbar-header highlight"
|
|
></html:span>
|
|
<html:span
|
|
id="preview-note-middle-title"
|
|
class="toolbar-header content"
|
|
></html:span>
|
|
<html:span
|
|
id="preview-note-to-title"
|
|
class="toolbar-header highlight"
|
|
></html:span>
|
|
</hbox>
|
|
<hbox class="toolbar-middle"></hbox>
|
|
<hbox class="toolbar-end"></hbox>
|
|
</hbox>
|
|
<vbox id="bn-note-preview-content" class="container">
|
|
<iframe
|
|
id="bn-note-preview"
|
|
class="container"
|
|
type="content"
|
|
></iframe>
|
|
</vbox>
|
|
</vbox>
|
|
</hbox>
|
|
</dialog>
|
|
</window>
|