From 80fc11b1ed881b71a733c71edef65ea6223bc4df Mon Sep 17 00:00:00 2001 From: Kenzo-Hugo Hillion <kenzo-hugo.hillion1@pasteur.fr> Date: Fri, 8 Nov 2019 14:53:11 +0100 Subject: [PATCH] rename color for gene functions --- frontend/src/components/KeggCard.vue | 4 ++-- frontend/src/main.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/KeggCard.vue b/frontend/src/components/KeggCard.vue index 4288304..38f1e60 100644 --- a/frontend/src/components/KeggCard.vue +++ b/frontend/src/components/KeggCard.vue @@ -1,14 +1,14 @@ <template> <v-flex xs12 md6 lg4> <v-card> - <v-toolbar-title class="function white--text"> + <v-toolbar-title class="genefunction white--text"> <v-icon class="primary--text">account_tree</v-icon> KEGG Function </v-toolbar-title> <div class="text-xs-center" v-if="kegg_detail.length == 0"> <v-progress-circular indeterminate - color="function" + color="genefunction" ></v-progress-circular> </div> <v-list v-else> diff --git a/frontend/src/main.js b/frontend/src/main.js index f8da182..f72cce5 100644 --- a/frontend/src/main.js +++ b/frontend/src/main.js @@ -13,7 +13,7 @@ Vue.use(Vuetify, { primary: '#263238', secondary: '#508991', tertiary: '#f5edf0', - function: '#65b891', + genefunction: '#65b891', taxonomy: '#886f68', }, }); -- GitLab