fix: Add caret color to dark theme (#564)

This commit is contained in:
Rémi Marseault 2022-12-12 11:28:44 +01:00 committed by GitHub
parent 8b6caf0335
commit 45c65ae394
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
@charset 'utf-8'; @charset "utf-8";
@import '@/styles/colors.scss'; @import '@/styles/colors.scss';
$sideborder-margin: 6px; $sideborder-margin: 6px;
@ -133,15 +133,15 @@ div {
width: 8px; width: 8px;
height: 8px; height: 8px;
background: var(--v-background-base) !important; background: var(--v-background-base) !important;
border-radius: 0px 20px 20px 0px; border-radius: 0 20px 20px 0;
} }
&::-webkit-scrollbar-thumb { &::-webkit-scrollbar-thumb {
border-radius: 20px; border-radius: 20px;
background: gray; background: gray;
} }
.v-list { .v-list {
margin: 0px; margin: 0;
padding: 0px; padding: 0;
} }
} }
body { body {
@ -174,3 +174,7 @@ body {
} }
} }
} }
.theme--dark.v-input,.theme--dark.v-input input,.theme--dark.v-input textarea {
caret-color: auto;
}