diff options
author | 2021-09-08 00:04:42 +1000 | |
---|---|---|
committer | 2021-09-08 00:04:42 +1000 | |
commit | 9dc47ef905b7727273a227fba32272e47b51e817 (patch) | |
tree | 200b017fab54eb52d81aca7987cb14faa6cfe10c /doxygen/style.css | |
parent | 142f96023889fc2c09a01318947f81cdb0e0f424 (diff) |
doxygen: Updated configuration to be based on up-to-date template, updated bootstrapped theme so it doesn't 404 (still won't work due to lack of support for jQuery smartmenus).
Diffstat (limited to 'doxygen/style.css')
-rw-r--r-- | doxygen/style.css | 163 |
1 files changed, 132 insertions, 31 deletions
diff --git a/doxygen/style.css b/doxygen/style.css index 91bc8ebb9a2..423b17fac31 100644 --- a/doxygen/style.css +++ b/doxygen/style.css @@ -100,21 +100,23 @@ h1, .h1, h2, .h2, h3, .h3{ font-weight: 200 !important; } -#navrow1 { - border-bottom: 2px solid #EEEEEE; -} - -#navrow2, #navrow3, #navrow4, #navrow5 { - border-bottom: 0px solid #EEEEEE; +#navrow1, #navrow2, #navrow3, #navrow4, #navrow5{ + border-bottom: 1px solid #EEEEEE; } .adjust-right { - margin-left: 30px !important; - font-size: 1.15em !important; +margin-left: 30px !important; +font-size: 1.15em !important; } .navbar{ - border: 0px solid #222 !important; + border: 0px solid #222 !important; +} +table{ + white-space:pre-wrap !important; } +/* + =========================== + */ /* Sticky footer styles @@ -231,35 +233,32 @@ pre.fragment { margin: 4px 8px 4px 2px; overflow: auto; word-wrap: break-word; + font-size: 9pt; line-height: 125%; font-family: monospace, fixed; font-size: 105%; } div.fragment { - margin: 8px 8px 8px 8px; - border: 0px solid #C4CFE5; - background-color: #F6F7F8; - box-shadow: none; - padding: 15px; - padding-bottom: 10px; + padding: 4px 6px; + margin: 4px 8px 4px 2px; + border: 1px solid #C4CFE5; } div.line { - font-family: monospace, fixed; - font-size: 15px; - min-height: 20px; + font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; + font-size: 12px; + min-height: 13px; line-height: 1.0; text-wrap: unrestricted; white-space: -moz-pre-wrap; /* Moz */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ white-space: pre-wrap; /* CSS3 */ - word-wrap: break-word; /* IE 5.5+ */ + word-wrap: normal; /* IE 5.5+ */ text-indent: -53px; padding-left: 53px; padding-bottom: 0px; - vertical-align: middle; margin: 0px; -webkit-transition-property: background-color, box-shadow; -webkit-transition-duration: 0.5s; @@ -272,6 +271,9 @@ div.line { transition-property: background-color, box-shadow; transition-duration: 0.5s; } +div.line:hover{ + background-color: #FBFF00; +} div.line.glow { background-color: cyan; @@ -280,18 +282,23 @@ div.line.glow { span.lineno { - padding-right: 5px; + padding-right: 4px; text-align: right; - border-right: 2px solid #adc; - background-color: transparent; + color:rgba(0,0,0,0.3); + border-right: 1px solid #EEE; + border-left: 1px solid #EEE; + background-color: #FFF; white-space: pre; + font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace ; } span.lineno a { - background-color: #eee; + background-color: #FAFAFA; + cursor:pointer; } span.lineno a:hover { - background-color: #C8C8C8; + background-color: #EFE200; + color: #1e1e1e; } div.groupHeader { @@ -358,10 +365,104 @@ blockquote { padding: 0 12px 0 16px; } -div.summary { - float: right; - font-size: 8pt; - padding-right: 5px; - width: 80%; - text-align: right; +/*---------------- Search Box */ + +#search-box { + margin: 10px 0px; +} +#search-box .close { + display: none; + position: absolute; + right: 0px; + padding: 6px 12px; + z-index: 5; +} + +/*---------------- Search results window */ + +#search-results-window { + display: none; +} + +iframe#MSearchResults { + width: 100%; + height: 15em; +} + +.SRChildren { + padding-left: 3ex; padding-bottom: .5em +} +.SRPage .SRChildren { + display: none; +} +a.SRScope { + display: block; +} +a.SRSymbol:focus, a.SRSymbol:active, +a.SRScope:focus, a.SRScope:active { + text-decoration: underline; +} +span.SRScope { + padding-left: 4px; +} +.SRResult { + display: none; +} + +/* class and file list */ +.directory .icona, +.directory .arrow { + height: auto; +} +.directory .icona .icon { + height: 16px; +} +.directory .icondoc { + background-position: 0px 0px; + height: 20px; +} +.directory .iconfopen { + background-position: 0px 0px; +} +.directory td.entry { + padding: 7px 8px 6px 8px; +} + +.table > tbody > tr > td.memSeparator { + line-height: 0; + .table-hover; + +} + +.memItemLeft, .memTemplItemLeft { + white-space: normal; +} + +/* enumerations */ +.panel-body thead > tr { + background-color: #e0e0e0; +} + +/* todo lists */ +.todoname, +.todoname a { + font-weight: bold; +} + +/* Class title */ +.summary { + margin-top: 25px; +} +.page-header { + margin: 20px 0px !important; +} +.page-header .title { + display: inline-block; +} +.page-header .pull-right { + margin-top: 0.3em; + margin-left: 0.5em; +} +.page-header .label { + font-size: 50%; } |