mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-28 21:18:54 +03:00
fix: Add caret color to dark theme (#564)
This commit is contained in:
parent
8b6caf0335
commit
45c65ae394
1 changed files with 8 additions and 4 deletions
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue