mirror of
https://github.com/gchq/CyberChef
synced 2025-01-09 02:58:46 +00:00
Add tab buttons (don't work yet).
Change some of the HTML around the tab bar
This commit is contained in:
parent
6430129b2a
commit
2aad7647ef
1 changed files with 12 additions and 7 deletions
|
@ -285,6 +285,15 @@
|
||||||
<div class="title no-select">
|
<div class="title no-select">
|
||||||
<label for="output-text">Output</label>
|
<label for="output-text">Output</label>
|
||||||
<span class="float-right">
|
<span class="float-right">
|
||||||
|
<button type="button" class="btn btn-primary bmd-btn-icon tab-buttons" id="btn-previous-tab" data-toggle="tooltip" title="Go to the previous tab">
|
||||||
|
<i class="material-icons">keyboard_arrow_left</i>
|
||||||
|
</button>
|
||||||
|
<button type="button" class="btn btn-primary bmd-btn-icon tab-buttons" id="btn-go-to-tab" data-toggle="tooltip" title="Go to a specific tab">
|
||||||
|
<i class="material-icons">more_horiz</i>
|
||||||
|
</button>
|
||||||
|
<button type="button" class="btn btn-primary bmd-btn-icon tab-buttons" id="btn-next-tab" data-toggle="tooltip" title="Go to the next tab">
|
||||||
|
<i class="material-icons">keyboard_arrow_right</i>
|
||||||
|
</button>
|
||||||
<button type="button" class="btn btn-primary bmd-btn-icon" id="save-to-file" data-toggle="tooltip" title="Save output to file">
|
<button type="button" class="btn btn-primary bmd-btn-icon" id="save-to-file" data-toggle="tooltip" title="Save output to file">
|
||||||
<i class="material-icons">save</i>
|
<i class="material-icons">save</i>
|
||||||
</button>
|
</button>
|
||||||
|
@ -301,6 +310,7 @@
|
||||||
<i class="material-icons">fullscreen</i>
|
<i class="material-icons">fullscreen</i>
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
|
<div class="io-info" id="bake-info"></div>
|
||||||
<div class="io-info" id="output-info"></div>
|
<div class="io-info" id="output-info"></div>
|
||||||
<div class="io-info" id="output-selection-info"></div>
|
<div class="io-info" id="output-selection-info"></div>
|
||||||
<button type="button" class="btn btn-primary bmd-btn-icon hidden" id="magic" data-toggle="tooltip" title="Magic!" data-html="true">
|
<button type="button" class="btn btn-primary bmd-btn-icon hidden" id="magic" data-toggle="tooltip" title="Magic!" data-html="true">
|
||||||
|
@ -313,13 +323,8 @@
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div id="output-wrapper">
|
<div id="output-wrapper">
|
||||||
<div id="output-tabs" style="display: none">
|
<div id="output-tabs-wrapper" style="display: none">
|
||||||
<ul>
|
<ul id="output-tabs">
|
||||||
<li id="output-tab-1" class="active-output-tab">
|
|
||||||
<div class="output-tab-content">
|
|
||||||
Tab 1
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="textarea-wrapper">
|
<div class="textarea-wrapper">
|
||||||
|
|
Loading…
Reference in a new issue