Miscing groups (#9004)

* Fixed party invite accepting

* Fixed message sending and scrolling

* Fixed profile clicking

* Hids needs work

* Added group plan page images

* Added category to editing groups

* Added quest box fix

* Added tier styles

* Changed port back to 8080

* Fixed npc style
This commit is contained in:
Keith Holliday
2017-08-29 14:23:09 -06:00
committed by GitHub
parent 40567fc8d0
commit 560d247c9b
21 changed files with 214 additions and 58 deletions

View File

@@ -29,12 +29,12 @@
span.timeago {{conversation.date | timeAgo}}
div {{conversation.lastMessageText.substring(0, 30)}}
.col-8.messages
chat-message.container-fluid(:chat.sync='activeChat', :inbox='true')
chat-message.container-fluid.message-scroll(:chat.sync='activeChat', :inbox='true')
// @TODO: Implement new message header here when we fix the above
.new-message-row(v-if='selectedConversation')
b-form-input(v-model='newMessage')
input(v-model='newMessage')
button.btn.btn-secondary(@click='sendPrivateMessage()') Send
</template>
@@ -67,6 +67,11 @@
padding-bottom: 6em;
}
.message-scroll {
max-height: 500px;
overflow: scroll;
}
.to-form input {
width: 60%;
display: inline-block;