aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/that_style/sass/_fragment_base.scss69
-rw-r--r--doc/that_style/sass/_fragment_color.scss80
-rw-r--r--doc/that_style/sass/_menu_bar.scss70
-rw-r--r--doc/that_style/sass/_mixins.scss33
-rw-r--r--doc/that_style/sass/_nav_tree.scss72
-rw-r--r--doc/that_style/sass/_navpath.scss121
-rw-r--r--doc/that_style/sass/_search.scss89
-rw-r--r--doc/that_style/sass/that_style.scss1240
-rw-r--r--doc/that_style/that_style.css25
9 files changed, 10 insertions, 1789 deletions
diff --git a/doc/that_style/sass/_fragment_base.scss b/doc/that_style/sass/_fragment_base.scss
deleted file mode 100644
index b46e46ef..00000000
--- a/doc/that_style/sass/_fragment_base.scss
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- Basic styling for fragments shared by all themes.
-*/
-
-div.fragment {
- padding: 0;
- margin: 4px 8px 4px 2px;
- color: #bebebe;
- background-color: #323232;
- border: 3px solid #e8e8e8;
- border-radius: 2px;
- overflow-y: hidden;
- overflow-x: auto;
- position: relative;
-
-}
-
-div.line {
- font-family: monospace, fixed;
- font-size: 13px;
- min-height: 13px;
- line-height: 1.0;
- text-indent: -53px;
- margin: 0px;
- padding: 1px 0 1px 53px;
- white-space: pre;
-
- @include transition-property(background-color);
- @include transition-duration(0s);
-
- &:hover {
- background-color: #1a1a1a;
- }
-
- &::after {
- // insert linefeed
- content:"\000A";
- white-space: pre;
- }
-}
-
-span.lineno {
- padding-right: 4px;
- text-align: right;
- color: black;
- height: 100px;
- white-space: pre;
- border-right: 3px solid #1d7567;
- background-color: #a0a0a0;
-}
-
-span.lineno a, span.lineno a:visited {
- background-color: inherit;
- color: #1e595a;
-}
-
-span.lineno a:hover {
- background-color: #C8C8C8;
- text-decoration: none;
-}
-
-.lineno {
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
diff --git a/doc/that_style/sass/_fragment_color.scss b/doc/that_style/sass/_fragment_color.scss
deleted file mode 100644
index 8b7977a2..00000000
--- a/doc/that_style/sass/_fragment_color.scss
+++ /dev/null
@@ -1,80 +0,0 @@
-// colours of code view
-
-div.fragment {
- color: #bebebe;
- background-color: #323232;
-}
-
-div.fragment::before {
- background-color: #1a1a1a;
- border-right: 1px solid #3e3e3e;
-}
-
-div.line:hover {
- background-color: #1a1a1a;
-}
-
-span.lineno {
- color: #969696;
- background-color: #1a1a1a;
- border-right: 1px solid #3e3e3e;
-}
-
-span.lineno a, span.lineno a:visited {
- background-color: inherit;
- color: #dcdcdc;
-}
-
-span.lineno a:hover {
- background-color: #323232;
-}
-
-
-// syntax highlighting
-
-a.code, a.code:visited {
- color: #6cc7eb;
-}
-
-a.codeRef, a.codeRef:visited {
- color: #3d95e6;
-}
-
-span.keyword {
- color: #98f77a;
- font-weight: bold;
-}
-
-span.keywordtype {
- color: #ffa0a0;
-}
-
-span.keywordflow {
- color: #98f77a;
- font-weight: bold;
-}
-
-span.comment {
- // color: #dadbb1;
- color: #999;
- font-style: oblique;
-}
-
-span.preprocessor {
- color: #cd5c57;
-}
-
-span.stringliteral {
- color: #64b041;
-}
-
-span.charliteral {
- color: #64b041;
-}
-
-blockquote {
- background-color: #F7F8FB;
- border-left: 2px solid #9CAFD4;
- margin: 0 24px 0 4px;
- padding: 0 12px 0 16px;
-}
diff --git a/doc/that_style/sass/_menu_bar.scss b/doc/that_style/sass/_menu_bar.scss
deleted file mode 100644
index d6aa1c3f..00000000
--- a/doc/that_style/sass/_menu_bar.scss
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * The main menu at the top
- */
-
-#main-menu {
- background-image: none;
- background: $background-color-dark;
- padding: 0;
-}
-
-.sm-dox {
- // :not(:last-child) -> do not style search box
- &> li:not(:last-child) > a {
- background-image: none;
- text-shadow: none;
- color: white;
- font-weight: normal;
- letter-spacing: 1px;
- font-size: 11pt;
- text-transform: uppercase;
- }
-
- &> li:not(:last-child) > a:hover,
- &> li:not(:last-child) > a.highlighted {
- background-color: $primary-color;
- }
-
- a span.sub-arrow {
- // this sets the color of the arrow
- border-color: white transparent transparent;
- }
-
- ul {
- // sub menus
- border: none;
- @include border-radius(0 !important);
- padding: 0;
- background: $background-color-dark;
- @include box-shadow(0 0 4px rgba(0,0,0,0.35), 0 0 8px rgba(0,0,0,0.2));
-
- a {
- background: inherit;
- color: white;
- font-weight: normal;
- letter-spacing: 1px;
- font-size: 11pt;
- }
-
- a:hover {
- background: $primary-color;
- color: white;
- font-weight: normal;
- letter-spacing: 1px;
- font-size: 11pt;
- }
-
- a.highlighted {
- background: $primary-color;
- color: white;
- font-weight: normal;
- letter-spacing: 1px;
- font-size: 11pt;
- }
-
- a span.sub-arrow {
- /* this sets the color of the arrow */
- border-color: white transparent transparent;
- }
- }
-}
diff --git a/doc/that_style/sass/_mixins.scss b/doc/that_style/sass/_mixins.scss
deleted file mode 100644
index aa030def..00000000
--- a/doc/that_style/sass/_mixins.scss
+++ /dev/null
@@ -1,33 +0,0 @@
-@mixin box-shadow($args...) {
- -moz-box-shadow: $args;
- -webkit-box-shadow: $args;
- -o-box-shadow: $args;
- box-shadow: $args;
-}
-
-@mixin border-radius($args...) {
- -moz-border-radius: $args;
- -webkit-border-radius: $args;
- border-radius: $args;
-}
-
-@mixin transition($args...) {
- -webkit-transition: $args;
- -moz-transition: $args;
- -o-transition: $args;
- transition: $args;
-}
-
-@mixin transition-property($arg) {
- -webkit-transition: $arg;
- -moz-transition: $arg;
- -o-transition: $arg;
- transition: $arg;
-}
-
-@mixin transition-duration($arg) {
- -webkit-duration: $arg;
- -moz-duration: $arg;
- -o-duration: $arg;
- duration: $arg;
-}
diff --git a/doc/that_style/sass/_nav_tree.scss b/doc/that_style/sass/_nav_tree.scss
deleted file mode 100644
index 0b265c62..00000000
--- a/doc/that_style/sass/_nav_tree.scss
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * The tree view on the left
- */
-
-.arrow {
- color:black;
- cursor: pointer;
- font-size: 80%;
- display: inline-block;
- width: 16px;
- height: 22px;
- margin-left: 4px;
-
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-
- &:hover {
- color: black;
- }
-}
-
-#selected .arrow {
- color: white;
-
- &:hover {
- color: #d2d2d2;
- }
-}
-
-#nav-tree {
- background-image: none;
- background-color: white;
-
- .item {
- margin: 0;
-
- &:hover {
- background-color: #d2d2d2;
- }
- }
-
- .selected {
- background-image: none;
- background-color: $primary-color;
- color: white;
- text-shadow: none;
-
- &:hover {
- background-image: none;
- background-color: $primary-color;
- color: white;
- text-shadow: none;
- }
- }
-
- a {
- color: black;
- }
-}
-
-.ui-resizable-e {
- background: #808080 url("splitbar_handle.svg") no-repeat center;
- border-right: solid 1px #c0c0c0;
- border-left: solid 1px black;
-
- &:hover {
- background-color: #606060;
- }
-}
diff --git a/doc/that_style/sass/_navpath.scss b/doc/that_style/sass/_navpath.scss
deleted file mode 100644
index a266dca3..00000000
--- a/doc/that_style/sass/_navpath.scss
+++ /dev/null
@@ -1,121 +0,0 @@
-/*
- * The line at the bottom
- */
-
-.navpath {
- ul {
- font-size: 11px;
- background-image: none;
- height: 30px;
- line-height: 30px;
- color: black;
- border: none;
- border-top: 1px solid #808080;
- overflow: hidden;
- margin: 0px;
- padding: 0px;
- }
-
- /* intermediate navelems */
- li:not(:first-child) {
- list-style-type: none;
- float: left;
- padding-left: 18px;
- padding-right: 10px;
- color: black;
- background-color: white;
- background-image: url('nav_edge_inter.svg');
- background-repeat: no-repeat;
- background-position: left -1px;
- background-size: auto 100%;
- }
-
- /* first navelem */
- li:first-child {
- list-style-type: none;
- float: left;
- padding-left: 15px;
- padding-right: 10px;
- color: black;
- background-color: white;
- background-image: none;
- }
-
- /* last navelem */
- li:nth-last-child(2) {
- list-style-type: none;
- float: left;
- padding-left:10px;
- padding-right:15px;
- color: white;
- background-color: $primary-color;
- background-image: url('nav_edge_right.svg');
- background-repeat: no-repeat;
- background-position: right -1px;
- background-size: auto 100%;
-
- }
-
- li:nth-last-child(2):not(:first-child) {
- list-style-type: none;
- float: left;
- padding-left:15px;
- padding-right:15px;
- color: white;
- background-color: $primary-color;
- background-image: url('nav_edge_left.svg'), url('nav_edge_right.svg');
- background-repeat: no-repeat;
- background-position: -1px -1px, right -1px;
- background-size: auto 100%;
- }
-
- li.navelem a, .navpath li.navelem b {
- height:32px;
- display:block;
- text-decoration: none;
- outline: none;
- color: inherit;
- font-family: Roboto,sans-serif;
- text-shadow: none;
- text-decoration: none;
- font-weight: normal;
- }
-
- li.navelem a:hover {
- color: inherit;
- text-decoration: underline;
- }
-
- // the "doxygen" logo at the right
- li.footer {
- list-style-type: none;
- float: right;
- padding-left: 0;
- padding-right: 10px;
- background-color: #d5d5d5;
- background-image: none;
- color: black;
- font-size: 8pt;
-
- // show the edge image
- &:before {
- content: "";
- width: 13px;
- height: 30px;
- display: inline-block;
- float: left;
- background-image: url("nav_edge_right.svg");
- background-repeat: no-repeat;
- background-position: right 0;
- background-size: auto 100%;
-
- /* flip the element horizontally */
- -moz-transform: scaleX(-1);
- -o-transform: scaleX(-1);
- -webkit-transform: scaleX(-1);
- transform: scaleX(-1);
- filter: FlipH;
- -ms-filter: "FlipH";
- }
- }
-}
diff --git a/doc/that_style/sass/_search.scss b/doc/that_style/sass/_search.scss
deleted file mode 100644
index abd83bc0..00000000
--- a/doc/that_style/sass/_search.scss
+++ /dev/null
@@ -1,89 +0,0 @@
-/*
- * The search box
- */
-
-.sm-dox > li:last-child {
- margin-right: 10pt;
-}
-
-#MSearchBox {
- border: 2px inset black;
- display: table;
- width: 350px;
- height: 26px;
- background: white;
- margin-top: 5px;
-
- .left {
- background-image: none;
- display: table-cell;
- width: 100%;
- height: inherit;
- left: 0;
- }
-
- // don't need this element
- .right {
- background-image: none;
- width: 0;
- display: none;
- visibility: hidden;
- }
-}
-
-// override for when there is no main menu
-nav > #MSearchBox {
- border: 2px solid #666666;
- margin: 5px 10pt 0 0;
- height: 22px;
-}
-
-#MSearchSelect, .left #MSearchSelect {
- left: 0;
- background-image: url("mag_glass.svg");
- width: 22px;
- height: 22px;
- padding: 22px 22px 0 0 ;
- margin: 0 4px 0 4px;
- box-sizing: border-box;
-}
-
-#MSearchField {
- background-image: none;
- display: table-cell;
- margin: 0;
- // leave room for #MSearchSelect and a bit more for the border
- margin-left: 30px;
- width: calc(100% - 34px);
- height: 22px;
- font: 11pt sans-serif;
-}
-
-#MSearchSelectWindow {
- background-color: $background-color-dark;
- padding: 0;
- border: solid 1px black;
- @include border-radius(0);
- @include box-shadow(0 0 4px rgba(0,0,0,0.35), 0 0 8px rgba(0,0,0,0.2));
-}
-
-a.SelectItem {
- color: white;
- padding: 3px 4px;
- font: 10pt sans-serif;
- letter-spacing: 1px;
-
- &:hover {
- background-color: $primary-color;
- color: white;
- }
-
- &:focus, &:active {
- color: white;
- }
-}
-
-#MSearchResultsWindow {
- background-color: white;
- @include box-shadow(0 0 4px rgba(0,0,0,0.35), 0 0 8px rgba(0,0,0,0.2));
-}
diff --git a/doc/that_style/sass/that_style.scss b/doc/that_style/sass/that_style.scss
deleted file mode 100644
index f1ebf92b..00000000
--- a/doc/that_style/sass/that_style.scss
+++ /dev/null
@@ -1,1240 +0,0 @@
-/*
- * My own little style
- */
-
-@import "mixins";
-
-// colors
-$primary-color: #5f082b;
-$primary-color-dark: #2c0414;
-$primary-color-light: #820a32;
-$secondary-color: #00549f;
-$secondary-color-dark: #002546;
-$background-color: #ffffff;
-$background-color-dark: #414141;
-
-body, table, div, p, dl {
- font: 400 14px/22px Roboto,sans-serif;
-}
-
-h1.groupheader {
- font-size: 150%;
-}
-
-.title {
- font: 400 14px/28px Roboto,sans-serif;
- font-size: 150%;
- font-weight: bold;
- margin: 10px 2px;
-}
-
-h2.groupheader {
- border-bottom: 1px solid #555555;
- color: black;
- font-size: 200%;
- font-weight: bold;
- margin-top: 1.75em;
- padding-top: 1em;
- padding-bottom: 4px;
- width: 100%;
-}
-
-tr.heading h2 {
- border-bottom: 1px solid #a5a5a5;
- font-size: 150%;
- margin-top: 6px;
- margin-bottom: 6px;
- padding-top: 3px;
- padding-bottom: 7px;
-}
-
-h2.groupheader a {
- margin-left: 1%;
-}
-
-h3.groupheader {
- font-size: 100%;
-}
-
-h1, h2, h3, h4, h5, h6 {
- @include transition(none);
- margin-right: 15px;
-
- &.glow {
- text-shadow: none;
- color: $primary-color;
- }
-}
-
-dt {
- font-weight: bold;
-}
-
-div.multicol {
- -moz-column-gap: 1em;
- -webkit-column-gap: 1em;
- -moz-column-count: 3;
- -webkit-column-count: 3;
-}
-
-p.startli, p.startdd {
- margin-top: 2px;
-}
-
-p.starttd {
- margin-top: 0px;
-}
-
-p.endli {
- margin-bottom: 0px;
-}
-
-p.enddd {
- margin-bottom: 4px;
-}
-
-p.endtd {
- margin-bottom: 2px;
-}
-
-#top {
- border: none;
- position: relative;
- z-index: 100;
- @include box-shadow(0 0 4px rgba(0,0,0,0.4), 0 0 8px rgba(0,0,0,0.3));
-}
-
-caption {
- font-weight: bold;
-}
-
-span.legend {
- font-size: 70%;
- text-align: center;
-}
-
-h3.version {
- font-size: 90%;
- text-align: center;
-}
-
-div.qindex, div.navtab {
- background-color: $background-color;
- border: none;
- text-align: center;
-}
-
-div.qindex, div.navpath {
- width: 100%;
- line-height: 140%;
-}
-
-div.navtab {
- margin-right: 15px;
-}
-
-a, a:visited {
- color: $secondary-color;
- font-weight: normal;
- text-decoration: none;
-}
-
-.contents a:visited {
- color: #4665A2;
-}
-
-a:hover {
- text-decoration: underline;
-}
-
-a.qindex {
- font-weight: bold;
- text-transform: uppercase;
-}
-
-a.qindexHL {
- font-weight: bold;
- background-color: #9CAFD4;
- color: #ffffff;
- border: 1px double #869DCA;
-}
-
-.contents a.qindexHL:visited {
- color: #ffffff;
-}
-
-a.el, a.el:visited {
- font-weight: normal;
- color: $secondary-color;
-}
-
-a.elRef, a.elRef:visited {
- font-family: monospace;
- color: #006bc8;
-}
-
-@import "menu_bar";
-
-dl.el {
- margin-left: -1cm;
-}
-
-div.ah, span.ah {
- background: none;
- color: black;
- margin-bottom: 3px;
- margin-top: 3px;
- padding: 0.2em;
-
- border: none;
- @include border-radius(0);
- @include box-shadow(none);
-
- font: 14pt monospace;
- font-weight: bold;
- text-transform: uppercase;
-}
-
-div.classindex ul {
- list-style: none;
- padding-left: 0;
-}
-
-div.classindex span.ai {
- display: inline-block;
-}
-
-div.groupHeader {
- margin-left: 16px;
- margin-top: 12px;
- font-weight: bold;
-}
-
-div.groupText {
- margin-left: 16px;
- font-style: italic;
-}
-
-body {
- background-color: $background-color;
- color: black;
- margin: 0;
-}
-
-#doc-content {
- background-color: #111;
- color: $background-color;
-}
-
-// this is for individual member pages
-div.contents {
- color: black;
- background-color: $background-color;
- padding: 0;
- margin: 5pt;
-
- // the line after the member documentations
- hr {
- display: none;
- visibility: hidden;
- }
-}
-
-// override for 'normal' mode
-div.header + div.contents {
- padding: 1ex;
- margin: 0 5pt 5pt 5pt;
-}
-
-div.textblock {
- padding: 1ex 1ex 0 1ex;
-}
-
-div.textblock + ul {
- padding-bottom: 1%;
-}
-
-img.footer {
- border: 0px;
- vertical-align: middle;
-}
-
-@import "fragment_base";
-@import "fragment_color";
-
-@import "search";
-
-table.memberdecls {
- width: 100%;
- border-spacing: 0px;
- padding: 0px;
- margin-top: 7px;
- background-color: $background-color;
- @include box-shadow(0 0 4px rgba(0,0,0,0.35), 0 0 8px rgba(0,0,0,0.2));
-}
-
-.memberdecls tbody {
- background-color: $background-color;
-}
-
-.memberdecls .odd {
- background: #f6f6f6;
-}
-
-/* all but last separator show a line */
-.memberdecls tr[class^="separator"]:not(:last-child) .memSeparator {
- border-bottom: 1px solid #c5c5c5;
- line-height: 1px;
- margin: 0;
- padding: 0;
-}
-
-.memberdecls tr[class^="separator"]:last-child .memSeparator {
- border-bottom: none;
- line-height: 0;
- margin: 0;
- padding: 0;
-}
-
-table.fieldtable {
- @include border-radius(0);
- @include box-shadow(none);
-}
-
-.memberdecls td, .fieldtable tr {
- background-color: inherit;
-}
-
-.fieldtable th {
- display: none;
- height: 0;
- visibility: hidden;
-}
-
-td.fieldname {
- color: $primary-color-light;
- font-family: monospace;
- font-weight: bold;
-}
-
-th.markdownTableHeadLeft, th.markdownTableHeadRight,
-th.markdownTableHeadCenter, th.markdownTableHeadNone {
- background-color: $background-color-dark;
- color: white;
-}
-
-.memItemLeft, .memItemRight,
-.memTemplItemLeft, .memTemplItemRight, .memTemplParams {
- font-family: monospace;
- background-color: $background-color;
- border: none;
- margin: 4px;
- padding: 1px 0 0 8px;
-}
-
-.mdescLeft, .mdescRight {
- background-color: $background-color;
- border: none;
- margin: 4px;
- padding: 1px 0 0 8px;
-}
-
-.mdescLeft, .mdescRight {
- padding: 0px 8px 4px 8px;
- color: #555;
-}
-
-.memItemLeft, .memTemplItemLeft {
- white-space: nowrap;
-}
-
-.memItemRight {
- width: 100%;
-}
-
-.memTemplParams {
- color: #4665A2;
- white-space: nowrap;
- font-size: 80%;
-}
-
-/* Styles for detailed member documentation */
-
-.memtitle {
- padding: 8px;
- border: none;
- margin-bottom: -1px;
- background-image: none;
- background-color: #f6f6f6;
- line-height: 1.25;
- font-weight: bold;
- color: black;
- float: left;
- z-index: 0;
- position: relative;
- @include box-shadow(0 0 4px rgba(0,0,0,0.35), 0 0 8px rgba(0,0,0,0.2));
-}
-
-.permalink {
- font-size: 100%;
- display: inline-block;
- vertical-align: middle;
-}
-
-/* replace content of permalinks */
-.permalink a {
- visibility: hidden;
-}
-.permalink a:after {
- content: "ยง";
- visibility: visible;
- display: block;
- position: absolute;
- color: black;
- top: 20%;
-}
-
-.permalink a:visited {
- color: black;
-}
-
-.memtemplate {
- font-size: 100%;
- color: black;
- font-family: monospace;
- font-weight: normal;
- margin-left: 9px;
-}
-
-.memnav {
- background-color: #EBEFF6;
- border: 1px solid #A3B4D7;
- text-align: center;
- margin: 2px;
- margin-right: 15px;
- padding: 2px;
-}
-
-.mempage {
- width: 100%;
-}
-
-.memitem {
- font-family: monospace;
- padding: 0;
- margin-bottom: 10px;
- margin-right: 5px;
- -webkit-transition: none;
- -moz-transition: none;
- -ms-transition: none;
- -o-transition: none;
- transition: none;
- display: table !important;
- width: 100%;
- background-color: #f6f6f6;
- @include box-shadow(0 0 4px rgba(0,0,0,0.35), 0 0 8px rgba(0,0,0,0.2));
-}
-
-.memitem.glow {
- @include box-shadow(none);
-}
-
-.memname {
- font-family: monospace;
- font-weight: 400;
- margin-left: 6px;
-}
-
-.memname td {
- vertical-align: bottom;
-}
-
-.memproto, dl.reflist dt {
- border: none;
- padding: 6px 0px 6px 0px;
- color: black;
- font-weight: bold;
- text-shadow: none;
- background-color: #f6f6f6;
- position: relative;
- z-index: 1;
- @include box-shadow(none);
-}
-
-
-.overload {
- font-family: "courier new",courier,monospace;
- font-size: 65%;
-}
-
-.memdoc, dl.reflist dd {
- border: none;
- border-left: 4px solid $primary-color;
- border-bottom-left-radius: 0px;
- border-bottom-right-radius: 0px;
- -webkit-border-bottom-left-radius: 0px;
- -webkit-border-bottom-right-radius: 0px;
- -moz-border-bottom-left-radius: 0px;
- -moz-border-bottom-right-radius: 0px;
- padding: 2px 1% 2px 1%;
- margin: 1%;
- background-color: $background-color;
- background-image: none;
- @include box-shadow(none);
-
- /* allow movement of elements inside */
- display: flex;
- flex-direction: column;
-}
-
-/* overrides for docs on individual pages */
-
-.memtitle:nth-child(2) {
- width: 0;
- height: 0;
- display: none;
- visibility: hidden;
-}
-
-.memitem:nth-child(3) {
- margin: 0;
- margin-top: 0.5%;
- background-color: $background-color;
- @include box-shadow(none);
-}
-
-.memitem:nth-child(3) .memproto {
- padding: 10px;
- background-color: $background-color;
- margin-bottom: 10px;
-}
-
-.memitem:nth-child(3) .memproto::after {
- content: "";
- width: 99%;
- height: 1px;
- position: absolute;
- bottom: -10px;
- left: 0.5%;
- background: #666;
-}
-
-.memitem:nth-child(3) .memdoc {
- border: none;
- padding: 0;
-}
-
-.memitem:nth-child(3) table.memname {
- background-color: #f6f6f6;
- border-collapse: collapse;
- border-spacing: initial;
- border: 1px solid #aaa;
-}
-
-.memitem:nth-child(3) table.memname tr:not(:last-child) {
- border-bottom: 1px dashed #aaa;
-}
-
-
-dl.reflist dt {
- padding: 5px;
- z-index: 0; /* cover the top shadow of dd */
- position: relative;
- @include box-shadow(0 0 4px rgba(0,0,0,0.35), 0 0 8px rgba(0,0,0,0.2));
-}
-
-/* cover up the shadow at the bottom */
-dl.reflist dt::after {
- content: " ";
- width: 100%;
- display: block;
- height: 8px;
- position: absolute;
- background-color: #f6f6f6;
- left: 0;
- bottom: -8px;
-}
-
-dl.reflist dd {
- border-left: 4px solid $primary-color;
- padding: 2px 1% 2px 1%;
- margin: 8px 8px 24px 8px;
- outline: 8px solid #f6f6f6;
- @include box-shadow(0 0 4px 8px rgba(0,0,0,0.35), 0 0 8px 8px rgba(0,0,0,0.2));
-}
-
-dl.reflist dd p::before {
- font-size: 85%;
- content: "\25B6\00A0\00A0";
- display: inline-block;
- width: 12pt;
-}
-
-dl.reflist dd p {
- margin-top: 4px;
- margin-bottom: 4px;
-}
-
-.paramkey {
- text-align: right;
-}
-
-.paramtype {
- font-family: monospace;
- white-space: nowrap;
- color:$secondary-color-dark;
-}
-
-.paramname {
- color: black;
- font-family: monospace;
- white-space: nowrap;
-}
-.paramname em {
- color: $primary-color-light;
- font-style: normal;
-}
-.paramname code {
- color: #404040;
- line-height: 14px;
-}
-
-.params, .retval, .exception, .tparams {
- margin-left: 0;
- padding-left: 0;
- margin-bottom: -0.25em;
-}
-
-.params dt, .tparams dt {
- margin-bottom: 0.5em;
-}
-
-.params .paramname, .tparams .paramname, .retval .paramname, .exception .paramname {
- color: $primary-color-light;
- font-family: monospace;
- font-weight: bold;
- vertical-align: top;
-}
-
-.params .paramtype, .tparams .paramtype {
- font-family: monospace;
- font-style: italic;
- vertical-align: top;
-}
-
-.params .paramdir, .tparams .paramdir {
- font-family: "courier new",courier,monospace;
- vertical-align: top;
-}
-
-/* line over parameters docs */
-.params, .tparams {
- border-collapse: collapse;
-}
-
-.params tr, .tparams tr {
- @include box-shadow(0 -2px 0 -1px #606060);
-}
-
-.params .paramname, .tparams .paramname {
- border-top: 2px solid $primary-color;
- padding-right: 5pt;
-}
-
-.params td, .tparams td {
- padding-bottom: 1em;
-}
-
-table.mlabels {
- border-spacing: 0px;
-}
-
-td.mlabels-left {
- width: 100%;
- padding: 0px;
-}
-
-td.mlabels-right {
- vertical-align: bottom;
- padding: 0px;
- white-space: nowrap;
-}
-
-span.mlabels {
- margin-left: 8px;
-}
-
-span.mlabel {
- background-color: #444444;
- border: none;
- border-radius: 3px;
- text-shadow: none;
- color: white;
- margin-right: 4px;
- padding: 3px 5px;
- font-size: 8pt;
- white-space: nowrap;
- vertical-align: middle;
-}
-
-.memdoc .definition {
- position: relative;
- padding-top: 0.5em;
-
- /* move definition line to bottom of memdoc */
- order: 3;
-
- // border above
- &::before {
- content: "";
- width: 33%;
- height: 1px;
- border-top: 1px solid black;
- position: absolute;
- top: 0;
- }
-}
-
-
-
-// list of all members and class / file / ... lists
-table.directory {
- border-top: 1px solid #c5c5c5;
- border-bottom: 1px solid #c5c5c5;
- border-collapse:collapse;
- width: 100%;
- font: 400 14px Roboto,sans-serif;
-
- tr {
- // overwrite doxygen weirdness
- background-color: white !important;
-
- &.even {
- background-color: #f6f6f6 !important;
- }
-
- &:hover {
- background-color: #e6e6e6 !important;
- }
- }
-
- td.entry {
- padding: 1.5pt 3pt 1.5pt 3pt;
- white-space: normal;
- }
-}
-
-// class / file / ... lists specific
-div.directory {
- border: none;
-
- table.directory {
- tr {
- // this makes all lines the same height
- line-height: 17pt;
- }
-
- td {
- margin: 0;
- padding: 0.5pt 6pt 0.5pt 0;
- vertical-align: middle;
-
- &.entry {
- white-space: nowrap;
- }
-
- &.desc {
- width: 100%;
- padding-left: 6pt;
- border-left: 1px solid rgba(0,0,0,0.05);
- }
- }
- }
-}
-
-// "detail level" at the top
-.directory .levels {
- white-space: nowrap;
- width: 100%;
- text-align: right;
- font-size: 9pt;
-
- span {
- cursor: pointer;
- padding-left: 2px;
- padding-right: 2px;
- color: $secondary-color;
-
- &:hover {
- text-decoration: underline;
- }
- }
-}
-
-@import "nav_tree";
-
-.icon {
- font-family: monospace;
- font-weight: bold;
- font-size: 12px;
- height: 15px;
- width: 15px;
- display: inline-block;
- background-color: #444444;
- color: white;
- text-align: center;
- border-radius: 3px;
- margin: 0;
- padding-top: 1px;
- text-indent: -1px;
-}
-
-.icona {
- width: 0;
- height: 0;
- display: none;
- visibility: hidden;
-}
-
-.iconfopen {
- width: 24px;
- height: 18px;
- margin-bottom: 4px;
- background-image:url('folderopen.svg');
- background-position: 0;
- background-repeat: no-repeat;
- vertical-align:top;
- display: inline-block;
-}
-
-.iconfclosed {
- width: 24px;
- height: 18px;
- margin-bottom: 4px;
- background-image:url('folderclosed.svg');
- background-position: 0;
- background-repeat: no-repeat;
- vertical-align:top;
- display: inline-block;
-}
-
-.icondoc {
- width: 24px;
- height: 18px;
- margin-bottom: 4px;
- background-image:url('doc.svg');
- background-position: 0;
- background-repeat: no-repeat;
- vertical-align:top;
- display: inline-block;
-}
-
-div.dynheader {
- margin-top: 8px;
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-
-address {
- font-style: normal;
- color: #2A3D61;
-}
-
-table.doxtable caption {
- caption-side: top;
-}
-
-table.doxtable {
- border-collapse: collapse;
- margin-top: 4px;
- margin-bottom: 4px;
-}
-
-table.doxtable td, table.doxtable th {
- border: 1px solid #444444;
- padding: 3px 7px 2px;
-}
-
-table.doxtable th {
- background-color: #444444;
- color: #FFFFFF;
- font-size: 110%;
- padding-bottom: 4px;
- padding-top: 5px;
-}
-
-@import "navpath";
-
-div.summary {
- -webkit-order: 2;
- order: 2;
- float: right;
- font-size: 8pt;
- padding-right: 5px;
- width: 50%;
- text-align: right;
- margin-right: 0.5%;
-}
-
-div.summary a {
- white-space: nowrap;
-}
-
-table.classindex {
- margin: 10px;
- white-space: nowrap;
- margin-left: 1%;
- margin-right: 1%;
- width: 98%;
- border: none;
- border-top: 1px solid black;
- border-bottom: 1px solid black;
- border-spacing: 0.5em;
- padding: 0;
-}
-
-div.ingroups {
- font-size: 8pt;
- width: 50%;
- text-align: left;
-}
-
-div.ingroups a {
- white-space: nowrap;
-}
-
-div.header {
- display: -webkit-flex;
- display: flex;
- justify-content: space-between;
- background-image: none;
- background-color: $background-color;
- color: black;
- margin: 5pt 5pt 0 5pt;
- padding: 0 1ex 0 1ex;
- align-items: center;
- justify-content: center;
- border-bottom: none;
- position: relative;
-}
-
-div.header::after {
- content: "";
- height: 2px;
- width: 99%;
- position: absolute;
- bottom: -5px;
- left: 0.5%;
- background: #666;
-}
-
-div.headertitle {
- -webkit-order: 1;
- order: 1;
- margin-right: auto;
- text-align: center;
-}
-
-dl {
- padding: 0;
-}
-
-dl.section {
- margin-left: 0px;
- padding-left: 0px;
-}
-
-dl.section > dt {
- font-weight: bold;
- font-family: sans-serif;
-}
-
-dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant,
-dl.deprecated, dl.todo, dl.test, dl.bug {
- margin-left: -7px;
- padding-left: 3px;
-}
-
-dl.note {
- padding-left: 7px;
- border: none;
-}
-
-dl.warning {
- background-color: #ffe6ea;
- border: 1px solid #ff0728;
- border-left: 4px solid #ff0728;
- padding-top: 4px;
- padding-bottom: 3px;
-}
-
-dl.attention {
- border-left: 4px solid #ff0728;
-}
-
-dl.pre, dl.post, dl.invariant {
- background-color: #f0ffe6;
- border: 1px solid #5eb82a;
- border-left: 4px solid #5eb82a;
-}
-
-dl.deprecated {
- background-color: #f6f6f6;
- border: 1px solid black;
-}
-
-dl.todo {
- border-left: 4px solid #e8d500;
-}
-
-dl.test {
- border-left: 4px solid #00549f;
-}
-
-dl.bug {
- background-color: #f6f6f6;
- border: 1px solid #cc071e;
- border-left: 4px solid #cc071e;
-}
-
-dl.section dd {
- margin-bottom: 6px;
-}
-
-.memdoc dl dt a.el {
- font-weight: bold;
- color: black;
-}
-
-#projectlogo
-{
- text-align: center;
- vertical-align: bottom;
- border-collapse: separate;
-}
-
-#projectlogo img
-{
- border: 0px none;
-}
-
-#projectalign
-{
- vertical-align: middle;
-}
-
-#projectname
-{
- font: 300% Tahoma, Arial,sans-serif;
- margin: 0px;
- padding: 2px 0px;
-}
-
-#projectbrief
-{
- font: 120% Tahoma, Arial,sans-serif;
- margin: 0px;
- padding: 0px;
-}
-
-#projectnumber {
- font: 50% Roboto,sans-serif;
- margin: 0px;
- padding: 0px;
-}
-
-#titlearea {
- padding: 0px;
- margin: 0px;
- width: 100%;
- border-bottom: none;
-
- // should only match if main menu is disabled (depends on javascripts in #top)
- &:nth-last-child(2) {
- border-bottom: 2px solid #444444;
- }
-}
-
-.image
-{
- text-align: center;
-}
-
-.dotgraph, .mscgraph, .diagraph {
- text-align: center;
-}
-
-.caption
-{
- font-weight: bold;
-}
-
-div.zoom
-{
- border: 1px solid #90A5CE;
-}
-
-dl.citelist {
- margin-bottom: 5ex;
-
- dt {
- color: black;
- float: left;
- font-weight: bold;
- padding: 5px 0;
- margin: 2px 10pt 2px 0;
- }
-
- dd {
- margin: 2px 0;
- padding: 5px 0;
- }
-
- .startdd {
- margin-top: 0;
- }
-}
-
-div.toc {
- background-color: transparent;
- border: 1px solid $background-color-dark;
- @include border-radius(0);
- float: right;
- height: auto;
- margin: 0 8px 10px 10px;
- padding: 10px 15px 5px 25px;
- width: auto;
-
- li {
- background: transparent;
- font: 10pt Roboto,DejaVu Sans,sans-serif;
- padding-left: 0;
- padding-top: 0.5ex;
-
- .level1 {
- margin-left: 10pt;
- }
-
- .level2 {
- margin-left: 10pt;
- }
-
- .level3 {
- margin-left: 10pt;
- }
-
- .level4 {
- margin-left: 10pt;
- }
- }
-
- h3 {
- font: bold 12px/1.2 Roboto,DejaVu Sans,sans-serif;
- color: black;
- border-bottom: none;
- margin: 0;
- letter-spacing: 1px;
- }
-
- ul {
- list-style: disc;
- border: none;
- padding: 0;
- }
-}
-
-.inherit_header {
- font-weight: bold;
- color: gray;
- cursor: pointer;
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-
-.inherit_header td {
- padding: 6px 0px 2px 5px;
-}
-
-.inherit {
- display: none;
-}
-
-/* tooltip related style info */
-
-.ttc {
- position: absolute;
- display: none;
-}
-
-#powerTip {
- cursor: default;
- white-space: nowrap;
- background-color: $background-color;
- border: 1px solid #323232;
- border-radius: 0;
- @include box-shadow(none);
- display: none;
- font-size: smaller;
- max-width: 80%;
- opacity: 0.9;
- padding: 1ex 1em 1em 1em;
- position: absolute;
- z-index: 2147483647;
-
- div.ttdoc {
- color: grey;
- font-style: italic;
- }
-
- div.ttname a {
- font-weight: bold;
- }
-
- div.ttname {
- font-weight: bold;
- }
-
- div.ttdeci {
- color: #006318;
- }
-
- div {
- margin: 0px;
- padding: 0px;
- font: 12px/16px Roboto,sans-serif;
- }
-
- &:before, &:after {
- content: "";
- position: absolute;
- margin: 0px;
- }
-}
-
-@media print
-{
- #top { display: none; }
- #side-nav { display: none; }
- #nav-path { display: none; }
- body { overflow:visible; }
- h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
- .summary { display: none; }
- .memitem { page-break-inside: avoid; }
- #doc-content
- {
- margin-left:0 !important;
- height:auto !important;
- width:auto !important;
- overflow:inherit;
- display:inline;
- background-color: white;
- }
-}
diff --git a/doc/that_style/that_style.css b/doc/that_style/that_style.css
index 34c32442..846353ca 100644
--- a/doc/that_style/that_style.css
+++ b/doc/that_style/that_style.css
@@ -152,10 +152,14 @@ a.elRef, a.elRef:visited {
letter-spacing: 1px;
font-size: 11pt;
text-transform: uppercase; }
-.sm-dox > li:not(:last-child) > a:hover, .sm-dox > li:not(:last-child) > a.highlighted {
+
+.sm-dox > li:not(:last-child) > a:hover,
+.sm-dox > li:not(:last-child) > a.highlighted {
background-color: #5f082b; }
+
.sm-dox a span.sub-arrow {
border-color: white transparent transparent; }
+
.sm-dox ul {
border: none;
-moz-border-radius: 0 !important;
@@ -262,7 +266,7 @@ img.footer {
Basic styling for fragments shared by all themes.
*/
div.fragment {
- padding: 0;
+ padding: 4px;
margin: 4px 8px 4px 2px;
color: #bebebe;
background-color: #323232;
@@ -302,7 +306,7 @@ span.lineno {
height: 100px;
white-space: pre;
border-right: 3px solid #1d7567;
- background-color: #a0a0a0; }
+ background-color: #323232; }
span.lineno a, span.lineno a:visited {
background-color: inherit;
@@ -333,7 +337,7 @@ div.line:hover {
span.lineno {
color: #969696;
- background-color: #1a1a1a;
+ background-color: #323232;
border-right: 1px solid #3e3e3e; }
span.lineno a, span.lineno a:visited {
@@ -539,9 +543,9 @@ th.markdownTableHeadCenter, th.markdownTableHeadNone {
width: 100%; }
.memTemplParams {
- color: #4665A2;
+ color: black;
white-space: nowrap;
- font-size: 80%; }
+ font-size: 100%; }
/* Styles for detailed member documentation */
.memtitle {
@@ -1406,25 +1410,18 @@ div.toc {
@media print {
#top {
display: none; }
-
#side-nav {
display: none; }
-
#nav-path {
display: none; }
-
body {
overflow: visible; }
-
h1, h2, h3, h4, h5, h6 {
page-break-after: avoid; }
-
.summary {
display: none; }
-
.memitem {
page-break-inside: avoid; }
-
#doc-content {
margin-left: 0 !important;
height: auto !important;
@@ -1432,5 +1429,3 @@ div.toc {
overflow: inherit;
display: inline;
background-color: white; } }
-
-/*# sourceMappingURL=that_style.css.map */