Switch the manual theme to Furo #104735

Merged
Aaron Carlisle merged 30 commits from furo-theme into blender-v4.1-release 2024-03-20 21:38:49 +01:00
Showing only changes of commit 4e2271deff - Show all commits

View File

@ -59,6 +59,26 @@ figcaption {
color: var(--color-foreground-secondary);
}
/* A bit hacky, revert the themes styling of kbd */
kbd:not(.compound) {
all: revert;
}
/* Only style parent kbd elements instead of the individual children */
:not(dl.option-list)> :not(dt):not(kbd):not(kbd)>kbd {
background-color: var(--color-background-secondary);
border: 1px solid var(--color-foreground-border);
border-radius: .2rem;
box-shadow: 0 .0625rem 0 rgba(0, 0, 0, .2),
inset 0 0 0 .125rem var(--color-background-primary);
color: var(--color-foreground-primary);
display: inline-block;
font-size: var(--font-size--small--3);
margin: 0 .2rem;
padding: 0 .2rem;
vertical-align: text-bottom;
}
.caption .menuselection {
background-color: transparent;
border: none;