Skip to content

Commit

Permalink
Deployed 1ebc7d7 to master with MkDocs 1.6.1 and mike 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
percevalw committed Nov 15, 2024
1 parent 2be1d8a commit ac837ca
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 0 deletions.
45 changes: 45 additions & 0 deletions master/assets/stylesheets/giscus_dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ main .gsc-loading-image {
min-height: 28px;
}

.gsc-box-preview {
min-height: 28px;
padding-bottom: 0.5rem;
}

.gsc-reply-box {
padding-inline-end: 0.5rem;
padding-bottom: 0.5rem;
Expand All @@ -61,6 +66,8 @@ main .gsc-loading-image {

.gsc-comment-box, .gsc-reply-box {
grid-area: reply;
border-bottom-left-radius: 0.3rem;
border-bottom-right-radius: 0.3rem;
}

.gsc-replies {
Expand Down Expand Up @@ -164,4 +171,42 @@ main .gsc-loading-image {
.gsc-comment-box-textarea {
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
}

.gsc-comment-box {
display: grid;
grid-template:
"header buttons"
"content content";
grid-template-columns: auto minmax(0,max-content);
}

.gsc-comment-box-tabs {
grid-area: header;
}

.gsc-comment-box-main {
grid-area: content;
}

.gsc-comment-box-bottom {
grid-area: buttons;
background-color: var(--color-canvas-subtle, var(--color-bg-tertiary));
margin: 0px;
align-items: center;
border-bottom-width: 1px;
border-start-end-radius: .25rem;
border-start-start-radius: .25rem;
padding-right: 0.5rem;
justify-content: end;
gap: 0.5rem;
}

.gsc-comment-box-md-toolbar {
margin-top: 0px;
}

.gsc-comment-box-is-reply > .gsc-comment-box-bottom {
border-top-width: 1px;
border-top-right-radius: 0;
}
45 changes: 45 additions & 0 deletions master/assets/stylesheets/giscus_light.css
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,11 @@ main .gsc-loading-image {
min-height: 28px;
}

.gsc-box-preview {
min-height: 28px;
padding-bottom: 0.5rem;
}

.gsc-reply-box {
padding-inline-end: 0.5rem;
padding-bottom: 0.5rem;
Expand All @@ -142,6 +147,8 @@ main .gsc-loading-image {

.gsc-comment-box, .gsc-reply-box {
grid-area: reply;
border-bottom-left-radius: 0.3rem;
border-bottom-right-radius: 0.3rem;
}

.gsc-replies {
Expand Down Expand Up @@ -245,4 +252,42 @@ main .gsc-loading-image {
.gsc-comment-box-textarea {
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
}

.gsc-comment-box {
display: grid;
grid-template:
"header buttons"
"content content";
grid-template-columns: auto minmax(0,max-content);
}

.gsc-comment-box-tabs {
grid-area: header;
}

.gsc-comment-box-main {
grid-area: content;
}

.gsc-comment-box-bottom {
grid-area: buttons;
background-color: var(--color-canvas-subtle, var(--color-bg-tertiary));
margin: 0px;
align-items: center;
border-bottom-width: 1px;
border-start-end-radius: .25rem;
border-start-start-radius: .25rem;
padding-right: 0.5rem;
justify-content: end;
gap: 0.5rem;
}

.gsc-comment-box-md-toolbar {
margin-top: 0px;
}

.gsc-comment-box-is-reply > .gsc-comment-box-bottom {
border-top-width: 1px;
border-top-right-radius: 0;
}

0 comments on commit ac837ca

Please sign in to comment.