Update dokka docs to v1.16.4_R19
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user