mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-02-13 19:55:15 +00:00
46 lines
1.7 KiB
HTML
46 lines
1.7 KiB
HTML
<div data-bind="visible: visible, event: { keydown: onPaneKeyDown }">
|
|
<div class="contextual-pane-out" data-bind="click: cancel, clickBubble: false"></div>
|
|
<div class="contextual-pane" id="setupnotebookspane">
|
|
<!-- Setup notebooks form -- Start -->
|
|
<div class="contextual-pane-in">
|
|
<div class="paneContentContainer">
|
|
<!-- Setup notebooks header - Start -->
|
|
<div class="firstdivbg headerline">
|
|
<span role="heading" aria-level="2" data-bind="text: title"></span>
|
|
<div
|
|
class="closeImg"
|
|
role="button"
|
|
aria-label="Close pane"
|
|
tabindex="0"
|
|
data-bind="click: cancel, event: { keypress: onCloseKeyPress }"
|
|
>
|
|
<img src="../../../images/close-black.svg" title="Close" alt="Close" />
|
|
</div>
|
|
</div>
|
|
<!-- Setup notebooks header - End -->
|
|
|
|
<div class="paneMainContent">
|
|
<div class="pkPadding">
|
|
<div data-bind="text: description"></div>
|
|
<button
|
|
id="completeSetupBtn"
|
|
class="btncreatecoll1 btnSetupQueries"
|
|
type="button"
|
|
aria-label="Complete setup"
|
|
data-bind="click: onCompleteSetupClick, event: { keypress: onCompleteSetupKeyPress }"
|
|
>
|
|
Complete setup
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Setup notebooks form - Start -->
|
|
<!-- Loader - Start -->
|
|
<div class="dataExplorerLoaderContainer dataExplorerPaneLoaderContainer" data-bind="visible: isExecuting">
|
|
<img class="dataExplorerLoader" alt="loading indicator image" src="/LoadingIndicator_3Squares.gif" />
|
|
</div>
|
|
<!-- Loader - End -->
|
|
</div>
|
|
</div>
|