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
332a0d92
Commit
332a0d92
authored
Apr 01, 2016
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sass and CSS fixes for landscape mobile views.
parent
9c78883b
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
155 additions
and
15 deletions
+155
-15
css/converse.css
css/converse.css
+72
-3
docs/CHANGES.md
docs/CHANGES.md
+1
-0
sass/_chatbox.scss
sass/_chatbox.scss
+44
-4
sass/_chatrooms.scss
sass/_chatrooms.scss
+11
-3
sass/_controlbox.scss
sass/_controlbox.scss
+12
-1
sass/_core.scss
sass/_core.scss
+6
-2
sass/_normalize.scss
sass/_normalize.scss
+7
-1
sass/_variables.scss
sass/_variables.scss
+2
-1
No files found.
css/converse.css
View file @
332a0d92
...
...
@@ -1006,6 +1006,12 @@
right
:
10px
;
left
:
10px
;
bottom
:
5px
;
}
}
@media
screen
and
(
max-height
:
450px
)
{
#conversejs
{
margin
:
0
;
right
:
10px
;
left
:
10px
;
bottom
:
5px
;
}
}
#conversejs
ul
li
{
height
:
auto
;
}
#conversejs
div
,
#conversejs
span
,
#conversejs
h1
,
#conversejs
h2
,
#conversejs
h3
,
#conversejs
h4
,
#conversejs
h5
,
#conversejs
h6
,
#conversejs
p
,
#conversejs
blockquote
,
...
...
@@ -1051,7 +1057,11 @@
left
:
0
;
right
:
0
;
width
:
auto
;
z-index
:
30
;
}
z-index
:
1031
;
}
@media
screen
and
(
max-height
:
450px
)
{
#conversejs
{
width
:
100%
;
width
:
100vw
;
}
}
@media
screen
and
(
max-width
:
480px
)
{
#conversejs
{
width
:
100%
;
...
...
@@ -1202,6 +1212,18 @@
bottom
:
6px
;
display
:
block
;
position
:
absolute
;
}
@media
screen
and
(
max-height
:
450px
)
{
#conversejs
.flyout
{
border-radius
:
0
;
}
}
@media
screen
and
(
max-width
:
480px
)
{
#conversejs
.flyout
{
border-radius
:
0
;
}
}
@media
screen
and
(
max-height
:
450px
)
{
#conversejs
.flyout
{
bottom
:
0
;
}
}
@media
screen
and
(
max-width
:
480px
)
{
#conversejs
.flyout
{
bottom
:
0
;
}
}
#conversejs
.chat-head
{
border-top-left-radius
:
4px
;
border-top-right-radius
:
4px
;
...
...
@@ -1211,6 +1233,14 @@
margin
:
0
;
padding
:
5px
;
position
:
relative
;
}
@media
screen
and
(
max-height
:
450px
)
{
#conversejs
.chat-head
{
border-top-left-radius
:
0
;
border-top-right-radius
:
0
;
}
}
@media
screen
and
(
max-width
:
480px
)
{
#conversejs
.chat-head
{
border-top-left-radius
:
0
;
border-top-right-radius
:
0
;
}
}
#conversejs
.chat-head
.avatar
{
margin-right
:
0.5em
;
border-radius
:
50%
;
...
...
@@ -1249,6 +1279,10 @@
height
:
35px
;
margin
:
0
0.5em
;
width
:
200px
;
}
@media
screen
and
(
max-height
:
450px
)
{
#conversejs
.chatbox
{
margin
:
0
;
width
:
100%
;
}
}
@media
screen
and
(
max-width
:
480px
)
{
#conversejs
.chatbox
{
margin
:
0
;
...
...
@@ -1261,11 +1295,16 @@
min-width
:
200px
;
width
:
200px
;
z-index
:
1
;
}
@media
screen
and
(
max-height
:
450px
)
{
#conversejs
.chatbox
.box-flyout
{
height
:
400px
;
width
:
100%
;
height
:
100vh
;
}
}
@media
screen
and
(
max-width
:
480px
)
{
#conversejs
.chatbox
.box-flyout
{
height
:
400px
;
width
:
100%
;
height
:
99
vh
;
}
}
height
:
100
vh
;
}
}
#conversejs
.chatbox
.chat-title
{
color
:
white
;
line-height
:
15px
;
...
...
@@ -1284,6 +1323,14 @@
height
:
289px
;
height
:
-webkit-calc
(
100%
-
55px
);
height
:
calc
(
100%
-
55px
);
}
@media
screen
and
(
max-height
:
450px
)
{
#conversejs
.chatbox
.chat-body
{
border-bottom-left-radius
:
0
;
border-bottom-right-radius
:
0
;
}
}
@media
screen
and
(
max-width
:
480px
)
{
#conversejs
.chatbox
.chat-body
{
border-bottom-left-radius
:
0
;
border-bottom-right-radius
:
0
;
}
}
#conversejs
.chatbox
.chat-body
p
{
color
:
#818479
;
font-size
:
14px
;
...
...
@@ -1355,6 +1402,9 @@
position
:
relative
;
height
:
95px
;
min-width
:
200px
;
}
@media
screen
and
(
max-height
:
450px
)
{
#conversejs
.chatbox
form
.sendXMPPMessage
{
width
:
100%
;
}
}
@media
screen
and
(
max-width
:
480px
)
{
#conversejs
.chatbox
form
.sendXMPPMessage
{
width
:
100%
;
}
}
...
...
@@ -1467,6 +1517,9 @@
@media
screen
and
(
max-width
:
480px
)
{
#conversejs
#controlbox
{
margin
:
0
;
}
}
@media
screen
and
(
max-height
:
450px
)
{
#conversejs
#controlbox
{
margin
:
0
;
}
}
#conversejs
#controlbox
.controlbox-head
{
background-color
:
#577BDD
;
border-top-left-radius
:
4px
;
...
...
@@ -1475,6 +1528,14 @@
height
:
55px
;
margin
:
0
;
padding
:
6px
6px
6px
0
;
}
@media
screen
and
(
max-height
:
450px
)
{
#conversejs
#controlbox
.controlbox-head
{
border-top-left-radius
:
0
;
border-top-right-radius
:
0
;
}
}
@media
screen
and
(
max-width
:
480px
)
{
#conversejs
#controlbox
.controlbox-head
{
border-top-left-radius
:
0
;
border-top-right-radius
:
0
;
}
}
#conversejs
#controlbox
form
.search-xmpp-contact
{
margin
:
0
;
padding-left
:
5px
;
...
...
@@ -1881,17 +1942,25 @@
margin-top
:
0.3em
;
}
#conversejs
.chatroom
{
width
:
300px
;
}
@media
screen
and
(
max-height
:
450px
)
{
#conversejs
.chatroom
{
width
:
100%
;
}
}
@media
screen
and
(
max-width
:
480px
)
{
#conversejs
.chatroom
{
width
:
100%
;
}
}
#conversejs
.chatroom
.box-flyout
{
min-width
:
300px
;
width
:
300px
;
}
@media
screen
and
(
max-height
:
450px
)
{
#conversejs
.chatroom
.box-flyout
{
height
:
400px
;
width
:
100%
;
height
:
100vh
;
}
}
@media
screen
and
(
max-width
:
480px
)
{
#conversejs
.chatroom
.box-flyout
{
height
:
400px
;
width
:
100%
;
height
:
99
vh
;
}
}
height
:
100
vh
;
}
}
#conversejs
.chatroom
.box-flyout
.chatroom-body
{
height
:
289px
;
border-bottom-left-radius
:
4px
;
...
...
docs/CHANGES.md
View file @
332a0d92
...
...
@@ -2,6 +2,7 @@
## 1.0.0 (Unreleased)
-
Better Sass/CSS for responsive/mobile views. [jcbrand]
-
Split converse.js up into different plugin modules. [jcbrand]
-
Add support for messages with type
`headline`
, often used for notifications
from the server. [jcbrand]
...
...
sass/_chatbox.scss
View file @
332a0d92
#conversejs
{
.flyout
{
border-radius
:
$chatbox-border-radius
;
@media
screen
and
(
max-height
:
$mobile-landscape-height
)
{
border-radius
:
0
;
}
@media
screen
and
(
max-width
:
$mobile-portrait-length
)
{
border-radius
:
0
;
}
bottom
:
$chatbox-hover-height
;
display
:
block
;
position
:
absolute
;
@media
screen
and
(
max-height
:
$mobile-landscape-height
)
{
bottom
:
0
;
}
@media
screen
and
(
max-width
:
$mobile-portrait-length
)
{
bottom
:
0
;
}
}
.chat-head
{
border-top-left-radius
:
$chatbox-border-radius
;
border-top-right-radius
:
$chatbox-border-radius
;
@media
screen
and
(
max-height
:
$mobile-landscape-height
)
{
border-top-left-radius
:
0
;
border-top-right-radius
:
0
;
}
@media
screen
and
(
max-width
:
$mobile-portrait-length
)
{
border-top-left-radius
:
0
;
border-top-right-radius
:
0
;
}
color
:
#ffffff
;
font-size
:
100%
;
height
:
$chat-head-height
;
...
...
@@ -58,7 +78,11 @@
height
:
$bottom-gutter-height
;
margin
:
0
$chat-gutter
;
width
:
$chat-width
;
@media
screen
and
(
max-width
:
$mobile-landscape-length
)
{
@media
screen
and
(
max-height
:
$mobile-landscape-height
)
{
margin
:
0
;
width
:
$mobile-chat-width
;
}
@media
screen
and
(
max-width
:
$mobile-portrait-length
)
{
margin
:
0
;
width
:
$mobile-chat-width
;
}
...
...
@@ -70,10 +94,15 @@
min-width
:
$chat-width
;
width
:
$chat-width
;
z-index
:
1
;
@media
screen
and
(
max-width
:
$mobile-landscape-length
)
{
@media
screen
and
(
max-height
:
$mobile-landscape-height
)
{
height
:
$mobile-chat-height
;
width
:
$mobile-chat-width
;
height
:
100vh
;
}
@media
screen
and
(
max-width
:
$mobile-portrait-length
)
{
height
:
$mobile-chat-height
;
width
:
$mobile-chat-width
;
height
:
99
vh
;
height
:
100
vh
;
}
}
.chat-title
{
...
...
@@ -92,6 +121,14 @@
background-color
:
white
;
border-bottom-left-radius
:
$chatbox-border-radius
;
border-bottom-right-radius
:
$chatbox-border-radius
;
@media
screen
and
(
max-height
:
$mobile-landscape-height
)
{
border-bottom-left-radius
:
0
;
border-bottom-right-radius
:
0
;
}
@media
screen
and
(
max-width
:
$mobile-portrait-length
)
{
border-bottom-left-radius
:
0
;
border-bottom-right-radius
:
0
;
}
border-top
:
0
;
height
:
289px
;
@include
calc
(
height
,
'100% -
#{
$chat-head-height
}
'
);
...
...
@@ -184,7 +221,10 @@
position
:
relative
;
height
:
#{
$chat-textarea-height
+
$toolbar-height
}
;
min-width
:
$chat-width
;
@media
screen
and
(
max-width
:
$mobile-landscape-length
)
{
@media
screen
and
(
max-height
:
$mobile-landscape-height
)
{
width
:
100%
;
}
@media
screen
and
(
max-width
:
$mobile-portrait-length
)
{
width
:
100%
;
}
.chat-textarea
{
...
...
sass/_chatrooms.scss
View file @
332a0d92
...
...
@@ -17,16 +17,24 @@
.chatroom
{
width
:
$chatroom-width
;
@media
screen
and
(
max-width
:
$mobile-landscape-length
)
{
@media
screen
and
(
max-height
:
$mobile-landscape-height
){
width
:
$mobile-chat-width
;
}
@media
screen
and
(
max-width
:
$mobile-portrait-length
)
{
width
:
$mobile-chat-width
;
}
.box-flyout
{
min-width
:
$chatroom-width
;
width
:
$chatroom-width
;
@media
screen
and
(
max-width
:
$mobile-landscape-length
)
{
@media
screen
and
(
max-height
:
$mobile-landscape-height
)
{
height
:
$mobile-chat-height
;
width
:
$mobile-chat-width
;
height
:
100vh
;
}
@media
screen
and
(
max-width
:
$mobile-portrait-length
)
{
height
:
$mobile-chat-height
;
width
:
$mobile-chat-width
;
height
:
99
vh
;
height
:
100
vh
;
}
.chatroom-body
{
height
:
289px
;
...
...
sass/_controlbox.scss
View file @
332a0d92
...
...
@@ -2,13 +2,24 @@
#controlbox
{
display
:
none
;
margin-right
:
2
*
$chat-gutter
;
@media
screen
and
(
max-width
:
$mobile-landscape-length
)
{
@media
screen
and
(
max-width
:
$mobile-portrait-length
)
{
margin
:
0
;
}
@media
screen
and
(
max-height
:
$mobile-landscape-height
)
{
margin
:
0
;
}
.controlbox-head
{
background-color
:
$controlbox-head-color
;
border-top-left-radius
:
$chatbox-border-radius
;
border-top-right-radius
:
$chatbox-border-radius
;
@media
screen
and
(
max-height
:
$mobile-landscape-height
)
{
border-top-left-radius
:
0
;
border-top-right-radius
:
0
;
}
@media
screen
and
(
max-width
:
$mobile-portrait-length
)
{
border-top-left-radius
:
0
;
border-top-right-radius
:
0
;
}
color
:
$chat-head-inverse-text-color
;
height
:
$chat-head-height
;
margin
:
0
;
...
...
sass/_core.scss
View file @
332a0d92
...
...
@@ -9,8 +9,12 @@
left
:
0
;
right
:
0
;
width
:
auto
;
z-index
:
30
;
@media
screen
and
(
max-width
:
$mobile-landscape-length
)
{
z-index
:
1031
;
// One more than bootstrap navbar
@media
screen
and
(
max-height
:
$mobile-landscape-height
)
{
width
:
100%
;
width
:
100vw
;
}
@media
screen
and
(
max-width
:
$mobile-portrait-length
)
{
width
:
100%
;
width
:
100vw
;
}
...
...
sass/_normalize.scss
View file @
332a0d92
...
...
@@ -8,7 +8,13 @@
@include
box-sizing
(
border-box
);
}
@media
screen
and
(
max-width
:
$mobile-landscape-length
)
{
@media
screen
and
(
max-width
:
$mobile-portrait-length
)
{
margin
:
0
;
right
:
10px
;
left
:
10px
;
bottom
:
5px
;
}
@media
screen
and
(
max-height
:
$mobile-landscape-height
)
{
margin
:
0
;
right
:
10px
;
left
:
10px
;
...
...
sass/_variables.scss
View file @
332a0d92
...
...
@@ -42,7 +42,8 @@ $chatbox-border-radius: 4px !default;
$bottom-gutter-height
:
35px
!
default
;
$chatbox-hover-height
:
6px
!
default
;
$mobile_landscape_length
:
480px
!
default
;
$mobile_landscape_height
:
450px
!
default
;
$mobile_portrait_length
:
480px
!
default
;
$font-size
:
14px
!
default
;
$legend-font-size
:
16px
!
default
;
...
...
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