mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-08 07:21:02 -04:00
fix overflow issues causing some inconsistencies in alignments
This commit is contained in:
parent
bd10dcafb9
commit
4a7008e5f6
3 changed files with 5 additions and 7 deletions
|
@ -203,8 +203,8 @@
|
||||||
tabindex="2"
|
tabindex="2"
|
||||||
data-help-title="Searching for operations"
|
data-help-title="Searching for operations"
|
||||||
data-help="<p>Use the search box to find useful operations.</p><p>Both operation names and descriptions are queried using a fuzzy matching algorithm.</p>"/>
|
data-help="<p>Use the search box to find useful operations.</p><p>Both operation names and descriptions are queried using a fuzzy matching algorithm.</p>"/>
|
||||||
<ul id="search-results" class="op-list"></ul>
|
<!-- <ul id="search-results" class="op-list"></ul>-->
|
||||||
<div id="categories" class="panel-group no-select"></div>
|
<!-- <div id="categories" class="panel-group no-select"></div>-->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!--recipe-->
|
<!--recipe-->
|
||||||
|
@ -223,7 +223,7 @@
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<ul id="rec-list" class="list-area no-select"></ul>
|
<!-- <ul id="rec-list" class="list-area no-select"></ul>-->
|
||||||
|
|
||||||
<!--controls-->
|
<!--controls-->
|
||||||
<div id="controls" class="no-select hide-on-maximised-output">
|
<div id="controls" class="no-select hide-on-maximised-output">
|
||||||
|
|
|
@ -15,8 +15,6 @@
|
||||||
color: var(--banner-font-colour);
|
color: var(--banner-font-colour);
|
||||||
background-color: var(--banner-bg-colour);
|
background-color: var(--banner-bg-colour);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
/*///////// dolphin additions //////*/
|
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -45,13 +45,13 @@ body {
|
||||||
|
|
||||||
#recipe {
|
#recipe {
|
||||||
height: 15vh;
|
height: 15vh;
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#input .cm-scroller,
|
#input .cm-scroller,
|
||||||
#output .cm-scroller {
|
#output .cm-scroller {
|
||||||
height: 20vh;
|
height: 20vh;
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#recipe .title,
|
#recipe .title,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue