Skip to content

Commit b78050c

Browse files
committed
make create button light blue
1 parent 1a9bb74 commit b78050c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/utils/crud/components/ChildrenTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<v-flex xs12 xl2>
77
<!-- Dialog for creating item -->
88
<v-tooltip top v-if="createButton">
9-
<v-btn fab small dark color="green" @click="create()" slot="activator">
9+
<v-btn fab small dark color="light-blue lighten-2" @click="create()" slot="activator">
1010
<v-icon>add</v-icon>
1111
</v-btn>
1212
<span>{{ $t('global.datatable.add') }}</span>

src/utils/crud/components/DataTableControls.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<v-flex xs12 lg3 text-xs-center>
66
<!-- Dialog for creating item -->
77
<v-tooltip top v-if="createMode">
8-
<v-btn fab dark color="green" @click="create()" slot="activator">
8+
<v-btn fab dark color="light-blue lighten-2" @click="create()" slot="activator">
99
<v-icon>add</v-icon>
1010
</v-btn>
1111
<span>{{ $t('global.datatable.add') }}</span>

0 commit comments

Comments
 (0)