-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3839 from raspberrypi/develop
Roll out latest develop changes to production
- Loading branch information
Showing
19 changed files
with
283 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ build | |
build-pico-sdk-docs | ||
documentation/html | ||
documentation/asciidoc/pico-sdk | ||
.venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
|
||
/*! Asciidoctor Tabs | Copyright (c) 2018-present Dan Allen | MIT License */ | ||
.tabs { | ||
margin-bottom: 1.25em; | ||
} | ||
|
||
.tablist > ul { | ||
display: flex; | ||
flex-wrap: nowrap; | ||
overflow-x: scroll; | ||
overflow-y: hidden; | ||
list-style: none; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.tablist > ul li { | ||
align-items: center; | ||
background-color: #eee; | ||
cursor: pointer; | ||
display: flex; | ||
font-weight: bold; | ||
line-height: 1.5; | ||
padding: 0.25em 1em; | ||
position: relative; | ||
} | ||
|
||
.tablist > ul li p { | ||
margin-bottom: 0px !important; | ||
} | ||
|
||
.tablist > ul li:focus-visible { | ||
outline: none; | ||
} | ||
|
||
.tablist.ulist, | ||
.tablist.ulist > ul li { | ||
margin: 0; | ||
} | ||
|
||
.tablist.ulist > ul li + li { | ||
margin-left: 0.25em; | ||
} | ||
|
||
.tabs .tablist li::after { | ||
content: ""; | ||
display: block; | ||
height: 1px; | ||
position: absolute; | ||
bottom: -1px; | ||
left: 0; | ||
right: 0; | ||
} | ||
|
||
.tabs.is-loading .tablist li:not(:first-child), | ||
.tabs:not(.is-loading) .tablist li:not(.is-selected) { | ||
background-color: initial; | ||
border-left: 1px solid #eee; | ||
border-right: 1px solid #eee; | ||
border-top: 1px solid #eee; | ||
} | ||
|
||
.tabs.is-loading .tablist li:first-child::after, | ||
.tabs:not(.is-loading) .tablist li.is-selected::after { | ||
background-color: #eee; | ||
border-top: 2px solid var(--red); | ||
} | ||
|
||
/* | ||
.tabs:not(.is-loading) .tablist li, | ||
.tabs:not(.is-loading) .tablist li::after { | ||
transition: background-color 200ms ease-in-out; | ||
} | ||
*/ | ||
|
||
.tablist > ul p { | ||
line-height: inherit; | ||
margin: 0; | ||
} | ||
|
||
.tabpanel { | ||
background-color: #eee; | ||
padding: 1.25em; | ||
} | ||
|
||
.tablist > ul li { | ||
border-bottom: 0; | ||
} | ||
|
||
.tabs.is-loading .tabpanel + .tabpanel, | ||
.tabs:not(.is-loading) .tabpanel.is-hidden { | ||
display: none; | ||
} | ||
|
||
.tabpanel > :first-child { | ||
margin-top: 0; | ||
} | ||
|
||
/* #content is a signature of the Asciidoctor standalone HTML output */ | ||
#content .tabpanel > :last-child, | ||
#content .tabpanel > :last-child > :last-child, | ||
#content .tabpanel > :last-child > :last-child > li:last-child > :last-child { | ||
margin-bottom: 0; | ||
} | ||
|
||
.tablecontainer { | ||
overflow-x: auto; | ||
} | ||
|
||
#content .tablecontainer { | ||
margin-bottom: 1.25em; | ||
} | ||
|
||
#content .tablecontainer > table.tableblock { | ||
margin-bottom: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,4 +79,4 @@ p#release + #container { | |
display: block; | ||
width: 100%; | ||
} | ||
} | ||
} |
Oops, something went wrong.