Skip to content

Commit

Permalink
Build website
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Apr 27, 2023
1 parent 42305d0 commit 4187503
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 22 deletions.
7 changes: 0 additions & 7 deletions docs/assets/css/just-the-docs-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,6 @@ pre.highlight {
.highlight .gi {
color: #43d089; }

.highlight ::selection {
background-color: #fff; }

.highlight .language-json .w + .s2 {
color: #e35549; }

Expand Down Expand Up @@ -716,10 +713,6 @@ template {
* {
box-sizing: border-box; }

::selection {
color: #fff;
background: #2c84fa; }

html {
font-size: 14px !important;
scroll-behavior: smooth; }
Expand Down
7 changes: 0 additions & 7 deletions docs/assets/css/just-the-docs-default.css
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,6 @@ pre.highlight {
.highlight .gi {
color: #43d089; }

.highlight ::selection {
background-color: #fff; }

.highlight .language-json .w + .s2 {
color: #e35549; }

Expand Down Expand Up @@ -516,10 +513,6 @@ template {
* {
box-sizing: border-box; }

::selection {
color: #fff;
background: #7253ed; }

html {
font-size: 14px !important;
scroll-behavior: smooth; }
Expand Down
7 changes: 0 additions & 7 deletions docs/assets/css/just-the-docs-light.css
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,6 @@ pre.highlight {
.highlight .gi {
color: #43d089; }

.highlight ::selection {
background-color: #fff; }

.highlight .language-json .w + .s2 {
color: #e35549; }

Expand Down Expand Up @@ -516,10 +513,6 @@ template {
* {
box-sizing: border-box; }

::selection {
color: #fff;
background: #7253ed; }

html {
font-size: 14px !important;
scroll-behavior: smooth; }
Expand Down
1 change: 0 additions & 1 deletion docs/assets/images/search.svg

This file was deleted.

5 changes: 5 additions & 0 deletions docs/assets/js/just-the-docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,11 @@ jtd.onReady(function(){

jtd.onReady(function(){

if (!window.isSecureContext) {
console.log('Window does not have a secure context, therefore code clipboard copy functionality will not be available. For more details see https://web.dev/async-clipboard/#security-and-permissions');
return;
}

var codeBlocks = document.querySelectorAll('div.highlighter-rouge, div.listingblock > div.content, figure.highlight');

// note: the SVG svg-copied and svg-copy is only loaded as a Jekyll include if site.enable_copy_code_button is true; see _includes/icons/icons.html
Expand Down

0 comments on commit 4187503

Please sign in to comment.