Fixed alignment of chat messages in Firefox

This commit is contained in:
JC Brand 2013-05-31 16:53:43 +02:00
parent cd72a0a16e
commit 7a94f73d9f
3 changed files with 29 additions and 22 deletions

View File

@ -6,10 +6,12 @@ Changelog
- CSS tweaks: fixed overflowing text in status message and chatrooms list.
[jcbrand]
- Bugfix: Cannot join chatroom when clicking from a list of rooms.
- Bugfix: Couldn't join chatroom when clicking from a list of rooms.
[jcbrand]
- Add better support for kicking or banning users from chatrooms.
[jcbrand]
- Fixed alignment of chat messages in Firefox.
[jcbrand]
0.3 (2013-05-21)
----------------

View File

@ -174,24 +174,29 @@ ul.participant-list li.moderator {
color:#666666;
}
.chat-message-room,
.chat-message-them,
.chat-message-me {
font-weight: bold;
color: #436976;
}
.chat-message-room {
font-weight: bold;
color: #4B7003;
}
.chat-message-them {
font-weight: bold;
color: #F62817;
white-space: nowrap;
max-width: 100px;
text-overflow: ellipsis;
overflow: hidden;
display: inline-block;
float: left;
padding-right: 3px;
}
.chat-message-them {
color: #F62817;
}
.chat-message-me {
color: #436976;
}
.chat-message-room {
color: #4B7003;
}
.chat-event, .chat-date, .chat-info {
@ -263,7 +268,7 @@ div.chat-title {
.chat-head-chatbox,
.chat-head-chatroom {
background: linear-gradient(top, rgba(206,220,231,1) 0%,rgba(89,106,114,1) 100%);
height: 33px;
height: 35px;
position: relative;
}

2
converse.min.css vendored

File diff suppressed because one or more lines are too long