mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-08 23:35:01 -04:00
[#181] mobile layout: set heights of all components to make up 100vh
This commit is contained in:
parent
c779d39a2b
commit
f6b23ecca5
10 changed files with 50 additions and 46 deletions
|
@ -317,21 +317,6 @@ input.toggle-string {
|
|||
background-color: var(--disabled-border-colour) !important;
|
||||
}
|
||||
|
||||
/*@TODO: move below block elsewhere, think of a better name*/
|
||||
/* Mobile UI for the dropdown operations search */
|
||||
.dropdown-operations {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#reset-operations.hidden,
|
||||
#search-results.hidden,
|
||||
#categories.hidden {
|
||||
z-index: -10;
|
||||
display: none;
|
||||
}
|
||||
/* end mobile UI for the dropdown operations search */
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
}
|
||||
|
||||
#rec-list {
|
||||
overflow-y: scroll;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
#rec-list .operation {
|
||||
|
|
14
src/web/stylesheets/components/operations/_operations.css
Normal file
14
src/web/stylesheets/components/operations/_operations.css
Normal file
|
@ -0,0 +1,14 @@
|
|||
/**
|
||||
* Operations component styles
|
||||
*/
|
||||
|
||||
.operations-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#reset-operations.hidden,
|
||||
#search-results.hidden,
|
||||
#categories.hidden {
|
||||
z-index: -10;
|
||||
display: none;
|
||||
}
|
|
@ -1,3 +1,7 @@
|
|||
/**
|
||||
* Operations - Search component and search-results list
|
||||
*/
|
||||
|
||||
#search {
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue