style read marker a bit
This commit is contained in:
parent
0671a9ec40
commit
62fbe3e949
3 changed files with 35 additions and 5 deletions
|
|
@ -62,8 +62,8 @@
|
|||
v-on:send-quick-reaction="sendQuickReaction"
|
||||
v-on:context-menu="showContextMenuForEvent($event)"
|
||||
/>
|
||||
<div>EventID: {{ event.getId() }}</div>
|
||||
<div v-if="event.getId() == readMarker">------- READ MARKER -------</div>
|
||||
<!-- <div>EventID: {{ event.getId() }}</div> -->
|
||||
<div v-if="event.getId() == readMarker && index < (events.length - 1)" class="read-marker" title="Unread messages" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -21,15 +21,15 @@
|
|||
<!-- "REALLY LEAVE?" dialog -->
|
||||
<v-dialog v-model="showLeaveConfirmation" class="ma-0 pa-0" width="50%">
|
||||
<v-card>
|
||||
<v-card-title>Leave room?</v-card-title>
|
||||
<v-card-title>Are you sure you want to leave?</v-card-title>
|
||||
<v-card-text>
|
||||
<div>Do you really want to leave the room?</div>
|
||||
<div>You may not be able to rejoin.</div>
|
||||
</v-card-text>
|
||||
<v-divider></v-divider>
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn text @click="showLeaveConfirmation = false">Cancel</v-btn>
|
||||
<v-btn color="primary" text @click="doLeaveRoom();showLeaveConfirmation = false">Ok</v-btn>
|
||||
<v-btn color="primary" text @click="doLeaveRoom();showLeaveConfirmation = false">Next</v-btn>
|
||||
</v-card-actions>
|
||||
</v-card>
|
||||
</v-dialog>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue