1/** 2 3Doxygen Awesome 4https://github.com/jothepro/doxygen-awesome-css 5 6MIT License 7 8Copyright (c) 2021 jothepro 9 10Permission is hereby granted, free of charge, to any person obtaining a copy 11of this software and associated documentation files (the "Software"), to deal 12in the Software without restriction, including without limitation the rights 13to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14copies of the Software, and to permit persons to whom the Software is 15furnished to do so, subject to the following conditions: 16 17The above copyright notice and this permission notice shall be included in all 18copies or substantial portions of the Software. 19 20THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 26SOFTWARE. 27 28 */ 29 30html { 31 /* side nav width. MUST be = `TREEVIEW_WIDTH`. 32 * Make sure it is wide enough to contain the page title (logo + title + version) 33 */ 34 --side-nav-fixed-width: 340px; 35 --menu-display: none; 36 37 --top-height: 120px; 38} 39 40 41@media screen and (min-width: 768px) { 42 html { 43 --searchbar-background: var(--page-background-color); 44 } 45 46 #side-nav { 47 min-width: var(--side-nav-fixed-width); 48 max-width: var(--side-nav-fixed-width); 49 top: var(--top-height); 50 overflow: visible; 51 } 52 53 #nav-tree, #side-nav { 54 height: calc(100vh - var(--top-height)) !important; 55 } 56 57 #nav-tree { 58 padding: 0; 59 } 60 61 #top { 62 display: block; 63 border-bottom: none; 64 height: var(--top-height); 65 margin-bottom: calc(0px - var(--top-height)); 66 max-width: var(--side-nav-fixed-width); 67 background: var(--side-nav-background); 68 } 69 #main-nav { 70 float: left; 71 padding-right: 0; 72 } 73 74 .ui-resizable-handle { 75 cursor: default; 76 width: 1px !important; 77 box-shadow: 0 calc(-2 * var(--top-height)) 0 0 var(--separator-color); 78 } 79 80 #nav-path { 81 position: fixed; 82 right: 0; 83 left: var(--side-nav-fixed-width); 84 bottom: 0; 85 width: auto; 86 } 87 88 #doc-content { 89 height: calc(100vh - 31px) !important; 90 padding-bottom: calc(3 * var(--spacing-large)); 91 padding-top: calc(var(--top-height) - 80px); 92 box-sizing: border-box; 93 margin-left: var(--side-nav-fixed-width) !important; 94 } 95 96 #MSearchBox { 97 width: calc(var(--side-nav-fixed-width) - calc(2 * var(--spacing-medium))); 98 } 99 100 #MSearchField { 101 width: calc(var(--side-nav-fixed-width) - calc(2 * var(--spacing-medium)) - 65px); 102 } 103 104 #MSearchResultsWindow { 105 left: var(--spacing-medium) !important; 106 right: auto; 107 } 108} 109