Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cc-qtl-db
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cc-qtl
cc-qtl-db
Merge requests
!101
Draft: Resolve "Color theme"
Code
Examiner les modifications
Extraire la branche
Télécharger
Correctifs
Diff brut
Open
Draft: Resolve "Color theme"
color-theme-110
into
dev
Overview
0
Commits
1
Pipelines
2
Changes
5
Open
Remi PLANEL
requested to merge
color-theme-110
into
dev
3 years ago
Overview
0
Commits
1
Pipelines
2
Changes
5
Expand
Closes
#110
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
a743f25c
1 commit,
3 years ago
5 files
+
34
−
18
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
client-nuxt/components/GenericItem.vue
+
5
−
4
Options
@@ -7,7 +7,7 @@
elevation=
"2"
:type=
"skeletonLoaderType"
></v-skeleton-loader>
<v-card
v-else
flat
class=
"mt-3"
>
<v-card
v-else
flat
class=
"mt-3"
:color=
"color"
>
<v-toolbar
flat
:color=
"toolbarColor"
>
<v-btn
nuxt
x-small
text
class=
"mr-3"
@
click=
"goToItemListLocation()"
><v-icon
left
>
mdi-arrow-left
</v-icon>
{{
itemListLabel
}}
</v-btn
@@ -89,8 +89,8 @@
</v-toolbar>
<v-card-text>
<v-card
flat
>
<v-toolbar
dense
flat
<v-card
flat
:color=
"color"
>
<v-toolbar
dense
flat
:color=
"color"
><v-toolbar-title>
Description
</v-toolbar-title>
</v-toolbar>
<v-card-text
v-if=
"item.description"
>
@@ -125,6 +125,7 @@ export default {
default
:
'
card-heading, list-item-avatar-two-line@3, article, table-heading, table-thead, table-tfoot
'
,
},
color
:
{
type
:
String
,
default
:
null
},
flat
:
{
type
:
Boolean
,
default
:
false
},
},
@@ -145,7 +146,7 @@ export default {
},
// TODO : choose color for toolbar
toolbarColor
()
{
return
this
.
$vuetify
.
theme
.
dark
?
null
:
'
grey lighten-3
'
return
this
.
$vuetify
.
theme
.
dark
?
null
:
this
.
color
},
},
Loading