Fixup File Name Tokens (#8036)

This commit is contained in:
Zak Saunders 2023-01-31 04:30:37 +00:00 committed by GitHub
parent 87d59d12a4
commit 78f929c60b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 7 deletions

View File

@ -30,6 +30,7 @@
code { code {
padding: 0 1px; padding: 0 1px;
border: 1px solid var(--borderColor); border: 1px solid var(--borderColor);
background-color: #f7f7f7; background-color: var(--modalCloseButtonHoverColor);
color: var(--movieBackgroundColor);
} }
} }

View File

@ -7,11 +7,11 @@
&:hover { &:hover {
.token { .token {
background-color: #ddd; background-color: var(--popoverTitleBackgroundInverseColor);
} }
.example { .example {
background-color: #ccc; background-color: var(--popoverTitleBorderInverseColor);
} }
} }
} }
@ -27,7 +27,7 @@
.token { .token {
flex: 0 0 50%; flex: 0 0 50%;
padding: 6px 16px; padding: 6px 16px;
background-color: #eee; background-color: var(--popoverTitleBorderColor);
font-family: $monoSpaceFontFamily; font-family: $monoSpaceFontFamily;
} }
@ -38,7 +38,7 @@
justify-content: space-between; justify-content: space-between;
flex: 0 0 50%; flex: 0 0 50%;
padding: 6px 16px; padding: 6px 16px;
background-color: #ddd; background-color: var(--popoverTitleBackgroundColor);
.footNote { .footNote {
padding: 2px; padding: 2px;

View File

@ -198,8 +198,8 @@ module.exports = {
popoverShadowColor: 'rgba(0, 0, 0, 0.2)', popoverShadowColor: 'rgba(0, 0, 0, 0.2)',
popoverArrowBorderColor: '#fff', popoverArrowBorderColor: '#fff',
popoverTitleBackgroundInverseColor: '#595959', popoverTitleBackgroundInverseColor: '#9b9b9b',
popoverTitleBorderInverseColor: '#707070', popoverTitleBorderInverseColor: '#bfbfbf',
popoverShadowInverseColor: 'rgba(0, 0, 0, 0.2)', popoverShadowInverseColor: 'rgba(0, 0, 0, 0.2)',
popoverArrowBorderInverseColor: 'rgba(58, 63, 81, 0.75)', popoverArrowBorderInverseColor: 'rgba(58, 63, 81, 0.75)',