Update dokka docs to v1.16.4_R19

This commit is contained in:
bluefireoly
2020-12-23 04:21:44 +01:00
parent a509e7e5bf
commit cbc0c79da6
1226 changed files with 21496 additions and 45574 deletions

View File

@@ -1,4 +1,4 @@
.search button{border:none;fill:#637282;background:#f4f4f4;cursor:pointer}.search button:focus{outline:none}.popup-wrapper{min-width:calc(100% - 360px) !important}@media screen and (max-width: 759px){.popup-wrapper{min-width:100% !important}}.template-wrapper{height:32px;display:grid;grid-template-columns:auto auto}.template-wrapper span{line-height:32px}@media screen and (max-width: 759px){.template-wrapper{display:flex;height:auto;flex-direction:column}.template-wrapper span{line-height:unset}}.template-name{justify-self:start}.template-description{color:gray;justify-self:end}
.search button{border:none;fill:#637282;background:#f4f4f4;cursor:pointer;margin-top:3px}.search button:focus{outline:none}.popup-wrapper{min-width:calc(100% - 360px) !important}@media screen and (max-width: 759px){.popup-wrapper{min-width:100% !important}}.template-wrapper{height:32px;display:grid;grid-template-columns:auto auto}.template-wrapper span{line-height:32px}@media screen and (max-width: 759px){.template-wrapper{display:flex;height:auto;flex-direction:column}.template-wrapper span{line-height:unset}}.template-name{justify-self:start}.template-description{color:gray;justify-self:end}
/* stylelint-disable color-no-hex */
:root {
@@ -106,8 +106,8 @@
--ring-alert-z-index: 6;
}
html,.app-root{height:100%}.search-root{margin:0;padding:0;background:var(--ring-content-background-color);font-family:var(--ring-font-family);font-size:var(--ring-font-size);line-height:var(--ring-line-height)}.search-content{padding-top:24px;margin:0 41px;position:absolute;top:0;right:0;z-index:8;background-color:#f4f4f4}@media screen and (max-width: 759px){.search-content{margin:0 8px}}
html,.app-root{height:100%}.search-root{margin:0;padding:0;background:var(--ring-content-background-color);font-family:var(--ring-font-family);font-size:var(--ring-font-size);line-height:var(--ring-line-height)}.search-content{z-index:8;background-color:#f4f4f4}
div#paneSearch{width:248px;margin:0 auto}div#paneSearch input#navigation-pane-search{background:#fff;border:1px solid #dadfe6;box-sizing:border-box;border-radius:4px;padding:8px;height:40px}div#paneSearch .navigation-pane-search{padding-top:16px;width:100%}div#paneSearch div.paneSearchInputWrapper{position:relative}div#paneSearch div.paneSearchInputWrapper span.paneSearchInputClearIcon{position:absolute;top:calc(50% + 2px);right:8px;cursor:pointer}.navigation-pane-popup{margin-top:1.2em}
.page-summary{background:#fff;border:1px solid #dadfe6;position:fixed;top:25%;max-height:70vh;right:-2px;width:250px;z-index:8;transition:width .2s}.page-summary.hidden{width:3em;writing-mode:vertical-rl;text-orientation:mixed}.page-summary.hidden .content-wrapper h4{margin:0;padding:8px}.page-summary .content-wrapper{padding:.5em 0 1em 0;letter-spacing:.2px}.page-summary .content-wrapper h4{margin:0 2em;font-weight:600}.page-summary .content-wrapper ul{list-style-type:none;width:100%;padding:0;margin:1em 0;overflow-x:hidden;overflow-y:auto;max-height:60vh}.page-summary .content-wrapper ul li{width:100%;padding:4px 0}.page-summary .content-wrapper ul li:hover{background:rgba(91,93,239,.15)}.page-summary .content-wrapper ul li>a{margin:0 2em}.page-summary .content-wrapper ul li.selected{border-left:4px solid #5b5def}@media screen and (max-width: 759px){.page-summary{display:none}}
.page-summary{background:#fff;border:1px solid #dadfe6;position:fixed;top:25%;max-height:70vh;right:-2px;width:250px;z-index:8;transition:width .2s}.page-summary.hidden{width:3em;writing-mode:vertical-rl;text-orientation:mixed}.page-summary.hidden .content-wrapper h4{margin:0;padding:8px}.page-summary .content-wrapper{padding:.5em 0 1em 0;letter-spacing:.2px}.page-summary .content-wrapper h4{margin:0 2em;font-weight:600}.page-summary .content-wrapper ul{list-style-type:none;width:100%;padding:0;margin:1em 0;overflow-x:hidden;overflow-y:auto;max-height:60vh}.page-summary .content-wrapper ul li{width:100%;padding:4px 0}.page-summary .content-wrapper ul li:hover{background:rgba(91,93,239,.15)}.page-summary .content-wrapper ul li>a{margin:0 2em;cursor:pointer}.page-summary .content-wrapper ul li.selected{border-left:4px solid #5b5def}@media screen and (max-width: 759px){.page-summary{display:none}}
/*# sourceMappingURL=main.css.map*/

View File

@@ -11,16 +11,68 @@
--horizontal-spacing-for-content: 42px;
--mobile-horizontal-spacing-for-content: 8px;
--bottom-spacing: 16px;
--color-scrollbar: rgba(39, 40, 44, 0.40);
--color-scrollbar-track: #f4f4f4;
}
#content {
padding: 0 var(--horizontal-spacing-for-content) var(--bottom-spacing) var(--horizontal-spacing-for-content);
html {
height: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
scrollbar-color: rgba(39, 40, 44, 0.40) #F4F4F4;
scrollbar-color: var(--color-scrollbar) var(--color-scrollbar-track);
}
html ::-webkit-scrollbar {
width: 8px;
height: 8px;
}
html ::-webkit-scrollbar-track {
background-color: var(--color-scrollbar-track);
}
html ::-webkit-scrollbar-thumb {
width: 8px;
border-radius: 6px;
background: rgba(39, 40, 44, 0.40);
background: var(--color-scrollbar);
}
.main-content {
padding-bottom: var(--bottom-spacing);
z-index: 0;
}
.main-content>* {
margin-left: var(--horizontal-spacing-for-content);
margin-right: var(--horizontal-spacing-for-content);
}
.navigation-wrapper {
display: flex;
padding: 24px 0;
flex-wrap: wrap;
position: sticky;
top: 0;
background-color: #f4f4f4;
padding-top: 19px;
padding-bottom: 18px;
z-index: 8;
/* Reset margin and use padding for border */
margin-left: 0;
margin-right: 0;
padding-left: var(--horizontal-spacing-for-content);
padding-right: var(--horizontal-spacing-for-content);
}
.navigation-wrapper.sticky-navigation {
border-bottom: 1px solid #DADFE6;
}
.breadcrumbs {
padding: 24px 0;
color: var(--breadcrumb-font-color);
max-width: calc(100% - 32px);
overflow-wrap: break-word;
}
@@ -93,7 +145,6 @@
.cover {
display: flex;
flex-direction: column;
width: 100%;
}
.cover .platform-hinted .sourceset-depenent-content > .symbol,
@@ -145,10 +196,6 @@
border-bottom: 2px solid white;
}
.title {
overflow-x: auto;
}
.title > .divergent-group:first-of-type {
padding-top: 0;
}
@@ -157,6 +204,7 @@
display: flex;
flex-direction: row;
min-height: 100%;
height: 100%;
}
#main {
@@ -164,6 +212,8 @@
max-width: calc(100% - 280px);
display: flex;
flex-direction: column;
height: auto;
overflow: auto;
}
#leftColumn {
@@ -177,6 +227,8 @@
padding-top: 16px;
position: relative;
max-height: calc(100% - 140px);
height: 100%;
overflow-y: auto;
}
#sideMenu img {
@@ -187,10 +239,6 @@
background: #DADFE6;
}
#searchBar {
float: right;
}
#logo {
background-size: 125px 26px;
border-bottom: 1px solid #DADFE6;
@@ -216,11 +264,11 @@ code.paragraph {
}
.overview > .navButton {
height: 100%;
align-items: center;
display: flex;
justify-content: flex-end;
padding-right: 24px;
padding: 10px;
margin-right: 14px;
cursor: pointer;
}
@@ -255,12 +303,21 @@ code.paragraph {
cursor: pointer;
}
.symbol span.copy-icon path {
fill: var(--average-color);
.symbol span.copy-icon::before {
width: 24px;
height: 24px;
display: inline-block;
content: '';
/* masks are required if you want to change color of the icon dynamically instead of using those provided with the SVG */
-webkit-mask: url("../images/copy-icon.svg") no-repeat 50% 50%;
mask: url("../images/copy-icon.svg") no-repeat 50% 50%;
-webkit-mask-size: cover;
mask-size: cover;
background-color: var(--average-color);
}
.symbol span.copy-icon:hover path {
fill: black;
.symbol span.copy-icon:hover::before {
background-color: black;
}
.copy-popup-wrapper {
@@ -280,6 +337,16 @@ code.paragraph {
border-radius: 3px;
}
.copy-popup-wrapper > .copy-popup-icon::before {
content: url("../images/copy-successful-icon.svg");
padding: 8px;
}
.copy-popup-wrapper > .copy-popup-icon {
position: relative;
top: 3px;
}
.copy-popup-wrapper.popup-to-left {
/* since it is in position absolute we can just move it to the left to make it always appear on the left side of the icon */
left: -15em;
@@ -293,10 +360,6 @@ code.paragraph {
font-weight: normal;
}
.copy-popup-wrapper svg {
padding: 8px;
}
.copy-popup-wrapper > span:last-child {
padding-right: 14px;
}
@@ -319,7 +382,6 @@ code.paragraph {
.sideMenuPart a {
display: block;
align-items: center;
height: 100%;
color: var(--average-color);
overflow: hidden;
}
@@ -360,7 +422,6 @@ code.paragraph {
.sideMenuPart > .overview .navButtonContent::before {
content: url("../images/arrow_down.svg");
height: 100%;
display: flex;
flex-direction: row;
align-items: center;
@@ -389,8 +450,6 @@ body, table {
font-size: 14px;
line-height: 24px;
margin: 0;
height: 100%;
/*max-width: 1440px; TODO: This results in worse experience on ultrawide, but on 16:9/16:10 looks better.*/
}
table {
@@ -448,9 +507,6 @@ h1.cover {
line-height: 64px;
letter-spacing: -1.5px;
margin-left: calc(-1 * var(--horizontal-spacing-for-content));
margin-right: calc(-1 * var(--horizontal-spacing-for-content));
padding-left: var(--horizontal-spacing-for-content);
border-bottom: 1px solid #DADFE6;
margin-bottom: 0;
@@ -490,6 +546,7 @@ h3, h4, h5, h6 {
.UnderCoverText table {
margin: 8px 0 8px 0;
word-break: break-word;
}
@@ -704,11 +761,7 @@ footer {
flex-direction: row;
align-self: flex-end;
min-height: 30px;
position: absolute;
top: 20px;
right: 88px;
z-index: 0;
flex-wrap: wrap;
}
.platform-selector:hover {
@@ -768,8 +821,8 @@ td.content {
transition: 0.2s 0.5s;
}
.main-subrow .anchor-icon > svg path {
fill: var(--average-color);
.main-subrow .anchor-icon::before {
content: url("../images/anchor-copy-button.svg");
}
.main-subrow .anchor-icon:hover {
@@ -1023,7 +1076,7 @@ td.content {
display: flex;
align-items: center;
position: relative;
height: var(--footer-height);
min-height: var(--footer-height);
border-top: 1px solid #DADFE6;
font-size: 12px;
line-height: 16px;
@@ -1038,8 +1091,8 @@ td.content {
background-color: white;
}
.footer span.go-to-top-icon path {
fill: var(--average-color);
.footer span.go-to-top-icon > a::before {
content: url("../images/go-to-top-icon.svg");
}
.footer > span:first-child {
@@ -1060,9 +1113,8 @@ td.content {
padding-left: 0.5em;
}
/*For svg*/
.footer path {
fill: var(--breadcrumb-font-color);
.footer .padded-icon::before {
content: url("../images/footer-go-to-link.svg");
}
.pull-right {
@@ -1090,11 +1142,11 @@ div.runnablesample {
padding: 0;
}
.d-flex {
display: flex;
}
@media screen and (max-width: 1119px) {
/* TODO this feels wrong as only is an aproximation of correct solution*/
.filter-section {
position: unset;
}
h1.cover {
font-size: 48px;
line-height: 48px;
@@ -1151,10 +1203,16 @@ div.runnablesample {
padding-right: 0.5em;
margin-left: -0.5em;
}
#content {
padding: var(--mobile-horizontal-spacing-for-content);
padding-top: 0;
.main-content > * {
margin-left: var(--mobile-horizontal-spacing-for-content);
margin-right: var(--mobile-horizontal-spacing-for-content);
}
.navigation-wrapper {
padding-left: var(--mobile-horizontal-spacing-for-content);
padding-right: var(--mobile-horizontal-spacing-for-content);
}
#sideMenu {
padding-bottom: 16px;
overflow: auto;