update Vue Material
This commit is contained in:
parent
22f7fcb176
commit
47a7fd4f1f
4 changed files with 17 additions and 14 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "ibt2",
|
"name": "ibt2",
|
||||||
"version": "1.1.4",
|
"version": "1.2.0",
|
||||||
"description": "I'll be there, 2: an oversimplified application to register attendees at a conference or event",
|
"description": "I'll be there, 2: an oversimplified application to register attendees at a conference or event",
|
||||||
"author": "Davide Alberani <da@erlug.linux.it>",
|
"author": "Davide Alberani <da@erlug.linux.it>",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
|
@ -27,7 +27,7 @@
|
||||||
"vue": "^2.2.4",
|
"vue": "^2.2.4",
|
||||||
"vue-loader": "^11.1.4",
|
"vue-loader": "^11.1.4",
|
||||||
"vue-markdown": "^2.1.3",
|
"vue-markdown": "^2.1.3",
|
||||||
"vue-material": "^0.6.3",
|
"vue-material": "^0.7.5",
|
||||||
"vue-resource": "^1.2.1",
|
"vue-resource": "^1.2.1",
|
||||||
"vue-router": "^2.3.0",
|
"vue-router": "^2.3.0",
|
||||||
"vuejs-datepicker": "^0.6.3",
|
"vuejs-datepicker": "^0.6.3",
|
||||||
|
|
|
@ -22,11 +22,11 @@
|
||||||
<md-icon>more_vert</md-icon>
|
<md-icon>more_vert</md-icon>
|
||||||
</md-button>
|
</md-button>
|
||||||
<md-menu-content>
|
<md-menu-content>
|
||||||
<md-menu-item @click="editAttendee()">
|
<md-menu-item @click.native="editAttendee()">
|
||||||
<span>edit</span>
|
<span>edit</span>
|
||||||
<md-icon>edit</md-icon>
|
<md-icon>edit</md-icon>
|
||||||
</md-menu-item>
|
</md-menu-item>
|
||||||
<md-menu-item @click="deleteAttendee()">
|
<md-menu-item @click.native="deleteAttendee()">
|
||||||
<span>delete</span>
|
<span>delete</span>
|
||||||
<md-icon>cancel</md-icon>
|
<md-icon>cancel</md-icon>
|
||||||
</md-menu-item>
|
</md-menu-item>
|
||||||
|
@ -112,9 +112,9 @@ export default {
|
||||||
min-width: 250px;
|
min-width: 250px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.attendee-list-item button {
|
.attendee-list-item .md-list-item-container {
|
||||||
padding-left: 0px !important;
|
padding-left: 0px;
|
||||||
padding-right: 0px !important;
|
padding-right: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.attendee-notes {
|
.attendee-notes {
|
||||||
|
@ -140,12 +140,15 @@ export default {
|
||||||
background-color: transparent !important;
|
background-color: transparent !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.attendee-notes {
|
|
||||||
max-width: 120px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.attendee-notes > p {
|
.attendee-notes > p {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
font-style: italic;
|
||||||
|
margin: 0px;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
max-width: 400px;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
color: rgba(0, 0, 0, 0.54);
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -359,8 +359,8 @@ export default {
|
||||||
margin-left: 0px !important;
|
margin-left: 0px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.attendee-add > button {
|
.attendee-add .md-list-item-container {
|
||||||
padding-left: 0px !important;
|
padding-left: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<md-snackbar md-position="top center" ref="snackbar">
|
<md-snackbar md-position="top center" ref="snackbar">
|
||||||
<span>{{ snackbackMessage }}</span>
|
<span>{{ snackbackMessage }}</span>
|
||||||
<md-button @click="$refs.snackbar.close()" class="snackbar-close">[x]</md-button>
|
<md-button @click.native="$refs.snackbar.close()" class="snackbar-close">[x]</md-button>
|
||||||
</md-snackbar>
|
</md-snackbar>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
|
Loading…
Reference in a new issue