Skip to content

Commit

Permalink
Various minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tdegeus committed Apr 26, 2021
1 parent 2d56314 commit 8fe627d
Show file tree
Hide file tree
Showing 3 changed files with 194 additions and 150 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
conda: docs/examples/environment.yaml
prop: tests & examples
- runs-on: macos-latest
config: -DBUILD_TESTS=1 -DBUILD_EXAMPLES=0
config: -DBUILD_TESTS=1 -DBUILD_EXAMPLES=0 -DBUILD_DOCS=1
conda: environment.yaml
prop: tests
- runs-on: windows-latest
Expand Down Expand Up @@ -91,6 +91,11 @@ jobs:
python version.py
python MeshQuad4.py
- name: Build doxygen-docs (error on warning)
if: runner.os == 'macOS'
working-directory: build
run: make docs

py:

strategy:
Expand Down
72 changes: 34 additions & 38 deletions docs/doxystyle/doxygen-awesome.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
*/

:root {
/* primary theme color. This will affect the entire websites color scheme: links, arrows, labels, ... */
Expand Down Expand Up @@ -134,13 +134,14 @@ SOFTWARE.
--fragment-foreground: #fff;
--fragment-keyword: #cc99cd;
--fragment-keywordtype: #ab99cd;
--fragment-keywordflow: #e08000;
--fragment-token: #7ec699;
--fragment-comment: #999;
--fragment-link: #98c0e3;
--fragment-preprocessor: #65cabe;
--fragment-linenumber-color: #ccc;
--fragment-linenumber-background: #35393c;
--fragment-whitespace: nowrap;
--fragment-lineheight: 20px;

/* sidebar navigation (treeview) colors */
--side-nav-background: var(--page-background-color);
Expand All @@ -149,7 +150,6 @@ SOFTWARE.

/* height of an item in any tree / collapsable table */
--tree-item-height: 30px;

}

@media screen and (max-width: 767px) {
Expand Down Expand Up @@ -228,8 +228,9 @@ a, a.el:visited, a.el:hover, a.el:focus, a.el:active {
}

/*
Title & top navigation
Title and top navigation
*/

#top {
background: var(--header-background);
border-bottom: 1px solid var(--separator-color);
Expand Down Expand Up @@ -261,7 +262,6 @@ a, a.el:visited, a.el:hover, a.el:focus, a.el:active {
#titlearea {
padding-bottom: var(--spacing-small);
}

}

#titlearea table tbody tr {
Expand Down Expand Up @@ -308,7 +308,6 @@ a, a.el:visited, a.el:hover, a.el:focus, a.el:active {
}
}


@media screen and (min-width: 768px) {
.sm-dox li, .tablist li {
display: var(--menu-display);
Expand All @@ -329,8 +328,6 @@ a, a.el:visited, a.el:hover, a.el:focus, a.el:active {
.sm-dox ul a:hover span.sub-arrow {
border-color: transparent transparent transparent var(--menu-focus-foreground);
}


}

.sm-dox ul {
Expand Down Expand Up @@ -451,8 +448,6 @@ a, a.el:visited, a.el:hover, a.el:focus, a.el:active {
}
}



#MSearchSelectWindow, #MSearchResultsWindow {
z-index: 9999;
}
Expand Down Expand Up @@ -495,7 +490,6 @@ a, a.el:visited, a.el:hover, a.el:focus, a.el:active {
background: none;
}


#MSearchBox span.right {
padding-top: calc(calc(var(--searchbar-height) / 2) - 12px);
}
Expand Down Expand Up @@ -552,8 +546,6 @@ iframe#MSearchResults {
color: var(--menu-focus-foreground);
}



@media screen and (max-width: 767px) {
#MSearchBox {
margin-top: var(--spacing-medium);
Expand Down Expand Up @@ -588,8 +580,6 @@ iframe#MSearchResults {
transform: translate(0, 20px);
animation: ease-out 280ms slideInSearchResultsMobile;
}


}

/*
Expand Down Expand Up @@ -671,8 +661,8 @@ iframe#MSearchResults {
width: 1px;
}

/**
content
/*
Contents
*/

div.header {
Expand Down Expand Up @@ -783,11 +773,9 @@ blockquote p {
}

/*
toc
Table of Contents
*/



div.toc {
background-color: var(--side-nav-background);
border: 1px solid var(--separator-color);
Expand Down Expand Up @@ -836,7 +824,7 @@ div.toc ul li.level2, div.toc ul li.level3 {
}

/*
code & fragment
Code & Fragments
*/

code, div.fragment, pre.fragment {
Expand Down Expand Up @@ -886,18 +874,23 @@ div.fragment, pre.fragment {
}
}

code, code a, pre.fragment, div.fragment, div.fragment .line, div.fragment span {
code, code a, pre.fragment, div.fragment, div.fragment .line, div.fragment span, div.fragment .line a, div.fragment .line span {
font-family: var(--font-family-monospace);
font-size: var(--code-font-size);
line-height: inherit;
font-size: var(--code-font-size) !important;
}

div.fragment, div.fragment .line, div.fragment span {
white-space: var(--fragment-whitespace);
div.fragment {
line-height: 0;
}

div.line:after {
content: '';
margin-right: var(--spacing-medium);
}

div.fragment .line, pre.fragment {
white-space: pre;
word-wrap: initial;
line-height: var(--fragment-lineheight);
}

div.fragment span.keyword {
Expand All @@ -908,6 +901,10 @@ div.fragment span.keywordtype {
color: var(--fragment-keywordtype);
}

div.fragment span.keywordflow {
color: var(--fragment-keywordflow);
}

div.fragment span.stringliteral {
color: var(--fragment-token)
}
Expand Down Expand Up @@ -942,7 +939,7 @@ div.fragment .line:first-child .lineno {
}

/*
dl warning, attention, note, deprecated, bug, ...
dl warning, attention, note, deprecated, bug, ...
*/

dl.warning, dl.attention, dl.note, dl.deprecated, dl.bug, dl.invariant, dl.pre {
Expand Down Expand Up @@ -1009,7 +1006,7 @@ dl.invariant, dl.pre {
}

/*
memitem
memitem
*/

div.memdoc, div.memproto, h2.memtitle {
Expand Down Expand Up @@ -1100,8 +1097,9 @@ table.mlabels > tbody > tr:first-child {
.memname, .memitem span.mlabels {
margin: 0
}

/*
reflist
reflist
*/

dl.reflist {
Expand Down Expand Up @@ -1134,7 +1132,7 @@ dl.reflist dd {
}

/*
table
Table
*/

table.markdownTable, table.fieldtable {
Expand Down Expand Up @@ -1190,7 +1188,7 @@ table.memberdecls {


/*
hr
Horizontal Rule
*/

hr {
Expand All @@ -1201,15 +1199,14 @@ hr {

.contents hr {
box-shadow: var(--content-maxwidth) 0 0 0 var(--separator-color), calc(0px - var(--content-maxwidth)) 0 0 0 var(--separator-color);

}

.contents img {
max-width: 100%;
}

/*
directories
Directories
*/
div.directory {
border-top: 1px solid var(--separator-color);
Expand Down Expand Up @@ -1269,7 +1266,7 @@ table.directory {
}

/*
class list
Class list
*/

.classindex dl.odd {
Expand All @@ -1283,9 +1280,8 @@ class list
}
}


/*
footer / nav-path
Footer and nav-path
*/

#nav-path {
Expand Down Expand Up @@ -1368,4 +1364,4 @@ li.navelem:first-child:before {

.navpath li.navelem a:hover {
color: var(--primary-color);
}
}
Loading

0 comments on commit 8fe627d

Please sign in to comment.