Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
df351d49
Commit
df351d49
authored
Jul 17, 2014
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix vertical resizing of chat boxes.
This fix breaks compatibility with IE8
parent
53f38dcc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
11 deletions
+13
-11
css/converse.css
css/converse.css
+6
-5
docs/CHANGES.rst
docs/CHANGES.rst
+1
-0
less/converse.less
less/converse.less
+6
-6
No files found.
css/converse.css
View file @
df351d49
...
...
@@ -635,6 +635,7 @@ span.spinner.hor_centered {
border-bottom-right-radius
:
4px
;
border-bottom-left-radius
:
4px
;
height
:
289px
;
height
:
calc
(
100%
-
35px
);
border-top
:
0
;
}
#conversejs
.chatroom
.chat-area
{
...
...
@@ -649,7 +650,7 @@ span.spinner.hor_centered {
border-left
:
1px
solid
#AAA
;
width
:
100px
;
border-bottom-right-radius
:
4px
;
height
:
289px
;
height
:
100%
;
}
#conversejs
.participants
ul
.participant-list
li
{
overflow
:
hidden
;
...
...
@@ -683,9 +684,8 @@ span.spinner.hor_centered {
line-height
:
1.3em
;
box-sizing
:
border-box
;
-moz-box-sizing
:
border-box
;
}
#conversejs
.chat-content
{
height
:
206px
;
height
:
calc
(
100%
-
84px
);
}
#conversejs
.chat-info
{
color
:
#666666
;
...
...
@@ -1181,6 +1181,7 @@ select#select-xmpp-status {
border-bottom-left-radius
:
4px
;
width
:
100%
;
height
:
289px
;
height
:
calc
(
100%
-
35px
);
overflow-y
:
hidden
;
position
:
absolute
;
}
...
...
@@ -1203,7 +1204,6 @@ select#select-xmpp-status {
border-top-left-radius
:
0
;
border-top-right-radius
:
0
;
width
:
200px
;
height
:
75px
;
}
#conversejs
.chatroom
form
.sendXMPPMessage
{
-webkit-border-bottom-right-radius
:
0
;
...
...
@@ -1215,7 +1215,8 @@ select#select-xmpp-status {
border
:
0
;
width
:
100%
;
padding
:
3px
;
border-radius
:
4px
;
border-bottom-left-radius
:
4px
;
border-bottom-right-radius
:
4px
;
resize
:
none
;
height
:
62px
;
}
...
...
docs/CHANGES.rst
View file @
df351d49
...
...
@@ -8,6 +8,7 @@ Changelog
1. Converse.js is now relicensed under the `Mozilla Public License <http://www.mozilla.org/MPL/2.0/>`_.
2. Configuration options for the chat toolbar have changed.
Please refer to the `relevant documentation <http://devbox:8890/docs/html/index.html#visible-toolbar-buttons>`_.
3. This release drops support for IE8.
* Events have been renamed to remove "on" prefix (which is redundant when used with 'on' method). [jcbrand]
* Simplified Chinese Translations [Lancelot]
...
...
less/converse.less
View file @
df351d49
...
...
@@ -674,6 +674,7 @@ span.spinner.hor_centered {
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
height: 289px;
height: ~"calc(100% - 35px)";
border-top: 0;
}
...
...
@@ -690,7 +691,7 @@ span.spinner.hor_centered {
border-left: 1px solid #AAA;
width: 100px;
border-bottom-right-radius: 4px;
height:
289px
;
height:
100%
;
}
#conversejs .participants ul.participant-list li {
...
...
@@ -729,10 +730,8 @@ span.spinner.hor_centered {
line-height: 1.3em;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
#conversejs .chat-content {
height: 206px;
height: ~"calc(100% - 84px)";
}
#conversejs .chat-info {
...
...
@@ -1316,6 +1315,7 @@ select#select-xmpp-status {
border-bottom-left-radius: 4px;
width: 100%;
height: 289px;
height: ~"calc(100% - 35px)";
overflow-y: hidden;
position: absolute;
}
...
...
@@ -1340,7 +1340,6 @@ select#select-xmpp-status {
border-top-left-radius: 0;
border-top-right-radius: 0;
width: 200px;
height: 75px;
}
#conversejs .chatroom form.sendXMPPMessage {
...
...
@@ -1354,7 +1353,8 @@ select#select-xmpp-status {
border: 0;
width: 100%;
padding: 3px;
border-radius: 4px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
resize: none;
height: 62px;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment