1
0
Fork 0
mirror of https://github.com/VueTorrent/VueTorrent.git synced 2025-04-02 23:05:12 +03:00

performance: softer red color

This commit is contained in:
Daan Wijns 2021-02-17 08:05:21 +01:00
parent 61947cd8d2
commit 05c9f940c8
3 changed files with 29 additions and 29 deletions
src
components
plugins

View file

@ -10,13 +10,12 @@
<v-card-title class="justify-center"> <v-card-title class="justify-center">
<h2>Search</h2> <h2>Search</h2>
</v-card-title> </v-card-title>
<v-card-text> <v-card-text class="pa-0">
<v-form <v-form
ref="form" ref="form"
v-model="searchForm.valid" v-model="searchForm.valid"
> >
<v-container fluid> <v-flex row class="py-1 px-2 mx-auto">
<v-flex row class="mx-auto">
<v-text-field <v-text-field
v-model="searchForm.pattern" v-model="searchForm.pattern"
:prepend-inner-icon="mdiMagnify" :prepend-inner-icon="mdiMagnify"
@ -36,7 +35,6 @@
{{ loading ? "Stop" : "Search" }} {{ loading ? "Stop" : "Search" }}
</v-btn> </v-btn>
</v-flex> </v-flex>
</v-container>
</v-form> </v-form>
<perfect-scrollbar> <perfect-scrollbar>
<v-data-table <v-data-table

View file

@ -34,8 +34,8 @@
{{ mdiDelete }} {{ mdiDelete }}
</v-icon> </v-icon>
<v-list-item-title <v-list-item-title
class="ml-2" class="ml-2 red--text"
style="font-size: 1em; color: red" style="font-size: 1em;"
> >
Delete Delete
</v-list-item-title> </v-list-item-title>
@ -45,8 +45,8 @@
{{ mdiDeleteForever }} {{ mdiDeleteForever }}
</v-icon> </v-icon>
<v-list-item-title <v-list-item-title
class="ml-2" class="ml-2 red--text"
style="font-size: 1em; color: red" style="font-size: 1em;"
> >
Delete with files Delete with files
</v-list-item-title> </v-list-item-title>

View file

@ -20,12 +20,14 @@ export default new Vuetify({
accent: variables.download, accent: variables.download,
background: colors.grey.lighten4, background: colors.grey.lighten4,
selected: colors.grey.lighten2, selected: colors.grey.lighten2,
red: colors.red.accent2,
...variables ...variables
}, },
dark: { dark: {
accent: variables.download, accent: variables.download,
background: colors.black, background: colors.black,
selected: colors.grey.darken1, selected: colors.grey.darken1,
red: colors.red.accent3,
...variables ...variables
} }
} }