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
a5ea86e2
Commit
a5ea86e2
authored
Apr 13, 2017
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial CSS work on showing an unread messages indicator
parent
8a5b4a65
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
253 additions
and
8 deletions
+253
-8
css/converse.css
css/converse.css
+133
-3
sass/_roster.scss
sass/_roster.scss
+103
-2
sass/_variables.scss
sass/_variables.scss
+1
-0
src/templates/roster_item.html
src/templates/roster_item.html
+16
-3
No files found.
css/converse.css
View file @
a5ea86e2
...
...
@@ -2193,14 +2193,142 @@
padding
:
0.3em
1em
;
text-shadow
:
0
1px
0
#FAFAFA
;
line-height
:
16px
;
width
:
100%
;
}
width
:
100%
;
height
:
30px
;
margin
:
0
;
padding
:
0
;
}
#conversejs
#converse-roster
.roster-contacts
dd
.open-chat
{
max-width
:
90%
;
}
margin
:
auto
;
padding
:
0.5em
0em
0
1em
;
width
:
88%
;
}
#conversejs
#converse-roster
.roster-contacts
dd
.open-chat
.pulse
{
padding
:
0
;
margin
:
0
;
}
#conversejs
#converse-roster
.roster-contacts
dd
.open-chat.unread-msgs
{
font-weight
:
bold
;
}
#conversejs
#converse-roster
.roster-contacts
dd
.open-chat.unread-msgs
.contact-name
{
width
:
70%
;
}
#conversejs
#converse-roster
.roster-contacts
dd
.open-chat.unread-msgs
.avatar
.pulse
{
border
:
0.7em
solid
#2A9D8F
;
background
:
transparent
;
border-radius
:
60px
;
height
:
30px
;
width
:
30px
;
-webkit-animation
:
pulse
3s
ease-out
;
-moz-animation
:
pulse
3s
ease-out
;
animation
:
pulse
3s
ease-out
;
-webkit-animation-iteration-count
:
infinite
;
-moz-animation-iteration-count
:
infinite
;
animation-iteration-count
:
infinite
;
margin
:
0
;
padding
:
0
;
margin-top
:
-7px
;
margin-left
:
-31px
;
z-index
:
1
;
opacity
:
0
;
}
#conversejs
#converse-roster
.roster-contacts
dd
.open-chat.unread-msgs
.avatar.avatar-online
.pulse
{
border
:
0.7em
solid
#1A9707
;
}
@-webkit-keyframes
pulse
{
0
%
{
-webkit-transform
:
scale
(
0
);
opacity
:
0.0
;
}
25
%
{
-webkit-transform
:
scale
(
0
);
opacity
:
0.1
;
}
50
%
{
-webkit-transform
:
scale
(
0.1
);
opacity
:
0.3
;
}
75
%
{
-webkit-transform
:
scale
(
0.5
);
opacity
:
0.5
;
}
100
%
{
-webkit-transform
:
scale
(
1
);
opacity
:
0.0
;
}
}
@-moz-keyframes
pulse
{
0
%
{
-moz-transform
:
scale
(
0
);
opacity
:
0.0
;
}
25
%
{
-moz-transform
:
scale
(
0
);
opacity
:
0.1
;
}
50
%
{
-moz-transform
:
scale
(
0.1
);
opacity
:
0.3
;
}
75
%
{
-moz-transform
:
scale
(
0.5
);
opacity
:
0.5
;
}
100
%
{
-moz-transform
:
scale
(
1
);
opacity
:
0.0
;
}
}
@keyframes
pulse
{
0
%
{
-webkit-transform
:
scale
(
0
);
-moz-transform
:
scale
(
0
);
-ms-transform
:
scale
(
0
);
-o-transform
:
scale
(
0
);
transform
:
scale
(
0
);
opacity
:
0.0
;
}
25
%
{
-webkit-transform
:
scale
(
0
);
-moz-transform
:
scale
(
0
);
-ms-transform
:
scale
(
0
);
-o-transform
:
scale
(
0
);
transform
:
scale
(
0
);
opacity
:
0.1
;
}
50
%
{
-webkit-transform
:
scale
(
0.1
);
-moz-transform
:
scale
(
0.1
);
-ms-transform
:
scale
(
0.1
);
-o-transform
:
scale
(
0.1
);
transform
:
scale
(
0.1
);
opacity
:
0.3
;
}
75
%
{
-webkit-transform
:
scale
(
0.5
);
-moz-transform
:
scale
(
0.5
);
-ms-transform
:
scale
(
0.5
);
-o-transform
:
scale
(
0.5
);
transform
:
scale
(
0.5
);
opacity
:
0.5
;
}
100
%
{
-webkit-transform
:
scale
(
1
);
-moz-transform
:
scale
(
1
);
-ms-transform
:
scale
(
1
);
-o-transform
:
scale
(
1
);
transform
:
scale
(
1
);
opacity
:
0.0
;
}
}
#conversejs
#converse-roster
.roster-contacts
dd
.open-chat
.msgs-indicactor
{
background-color
:
#D24E2B
;
color
:
white
;
border-radius
:
10%
;
float
:
right
;
font-size
:
11px
;
margin-left
:
-3em
;
font-weight
:
normal
;
padding
:
2px
4px
;
text-shadow
:
none
;
}
#conversejs
#converse-roster
.roster-contacts
dd
.open-chat
.contact-name
{
padding
:
0
;
margin
:
0
;
max-width
:
80%
;
float
:
none
;
height
:
60px
;
}
#conversejs
#converse-roster
.roster-contacts
dd
.open-chat
.contact-name.unread-msgs
{
max-width
:
70%
;
}
#conversejs
#converse-roster
.roster-contacts
dd
.open-chat
.avatar
{
float
:
left
;
display
:
inline-block
;
height
:
60px
;
}
#conversejs
#converse-roster
.roster-contacts
dd
.open-chat
.avatar
.status-icon
{
color
:
#2A9D8F
;
}
#conversejs
#converse-roster
.roster-contacts
dd
.open-chat
.avatar
.status-icon.icon-online
{
color
:
#1A9707
;
}
#conversejs
#converse-roster
.roster-contacts
dd
:hover
{
background-color
:
#DCF9F6
;
}
#conversejs
#converse-roster
.roster-contacts
dd
:hover
.remove-xmpp-contact
{
display
:
inline-block
;
}
#conversejs
#converse-roster
.roster-contacts
dd
.requesting-xmpp-contact
.request-actions
{
padding-top
:
0.5em
;
margin-right
:
1em
;
margin-left
:
0.3em
;
margin-bottom
:
0.3em
;
float
:
right
;
}
...
...
@@ -2216,7 +2344,7 @@
font-size
:
16px
;
float
:
left
;
color
:
#2A9D8F
;
padding
-right
:
0.5em
;
}
margin
-right
:
0.5em
;
}
#conversejs
#converse-roster
.roster-contacts
dd
.odd
{
background-color
:
#DCEAC5
;
/* Make this difference */
}
...
...
@@ -2233,7 +2361,9 @@
margin-left
:
5px
;
}
#conversejs
#converse-roster
.roster-contacts
dd
a
.remove-xmpp-contact
{
float
:
right
;
margin-right
:
1em
;
display
:
none
;
padding-top
:
0.5em
;
color
:
#818479
;
}
#conversejs
#converse-roster
span
.pending-contact-name
{
line-height
:
16px
;
...
...
sass/_roster.scss
View file @
a5ea86e2
...
...
@@ -105,9 +105,106 @@
text-shadow
:
0
1px
0
$text-shadow-color
;
line-height
:
$line-height
;
width
:
100%
;
height
:
30px
;
margin
:
0
;
padding
:
0
;
.open-chat
{
max-width
:
90%
;
margin
:
auto
;
padding
:
0
.5em
0em
0
1em
;
width
:
88%
;
.pulse
{
padding
:
0
;
margin
:
0
;
}
&
.unread-msgs
{
font-weight
:
bold
;
.contact-name
{
width
:
70%
;
}
.avatar
{
.pulse
{
border
:
0
.7em
solid
$link-color
;
background
:
transparent
;
border-radius
:
60px
;
height
:
30px
;
width
:
30px
;
@include
animation
(
pulse
3s
ease-out
);
@include
animation-iteration-count
(
infinite
);
margin
:
0
;
padding
:
0
;
margin-top
:
-7px
;
margin-left
:
-31px
;
z-index
:
1
;
opacity
:
0
;
}
&
.avatar-online
{
.pulse
{
border
:
0
.7em
solid
$online-color
;
}
}
@include
keyframes
(
pulse
)
{
0
%
{
@include
transform
(
scale
(
0
));
opacity
:
0
.0
;
}
25
%
{
@include
transform
(
scale
(
0
));
opacity
:
0
.1
;
}
50
%
{
@include
transform
(
scale
(
0
.1
));
opacity
:
0
.3
;
}
75
%
{
@include
transform
(
scale
(
0
.5
));
opacity
:
0
.5
;
}
100
%
{
@include
transform
(
scale
(
1
));
opacity
:
0
.0
;
}
}
}
}
.msgs-indicactor
{
background-color
:
$warning-color
;
color
:
white
;
border-radius
:
10%
;
float
:
right
;
font-size
:
11px
;
margin-left
:
-3em
;
font-weight
:
normal
;
padding
:
2px
4px
;
text-shadow
:
none
;
}
.contact-name
{
padding
:
0
;
margin
:
0
;
max-width
:
80%
;
float
:
none
;
height
:
$roster-item-height
;
&
.unread-msgs
{
max-width
:
70%
;
}
}
.avatar
{
float
:
left
;
display
:
inline-block
;
height
:
$roster-item-height
;
.status-icon
{
color
:
$link-color
;
&
.icon-online
{
color
:
$online-color
;
}
}
}
}
&
:hover
{
background-color
:
$highlight-color
;
.remove-xmpp-contact
{
...
...
@@ -116,6 +213,8 @@
}
&
.requesting-xmpp-contact
{
.request-actions
{
padding-top
:
0
.5em
;
margin-right
:
1em
;
margin-left
:
0
.3em
;
margin-bottom
:
0
.3em
;
float
:
right
;
...
...
@@ -136,7 +235,7 @@
font-size
:
16px
;
float
:
left
;
color
:
$link-color
;
padding
-right
:
0
.5em
;
margin
-right
:
0
.5em
;
}
&
.odd
{
background-color
:
#DCEAC5
;
...
...
@@ -159,7 +258,9 @@
}
&
.remove-xmpp-contact
{
float
:
right
;
margin-right
:
1em
;
display
:
none
;
padding-top
:
0
.5em
;
color
:
$text-color
;
}
}
...
...
sass/_variables.scss
View file @
a5ea86e2
...
...
@@ -17,6 +17,7 @@ $send-button-height: 27px !default;
$send-button-margin
:
3px
!
default
;
$message-them-color
:
#1A9707
!
default
;
$roster-height
:
194px
!
default
;
$roster-item-height
:
60px
!
default
;
$chat-head-color
:
#F4A261
!
default
;
$chat-head-text-color
:
white
!
default
;
...
...
src/templates/roster_item.html
View file @
a5ea86e2
<a
class=
"open-chat"
title=
"{{{title_fullname}}}: {{{fullname}}}
JID: {{{jid}}}
{{{desc_chat}}}"
href=
"#"
><span
class=
"icon-{{{chat_status}}}"
title=
"{{{desc_status}}}"
></span>
{{{fullname}}}
</a>
<a
class=
"open-chat {[ if (num_unread) { ]} unread-msgs {[ } ]}"
title=
"{{{title_fullname}}}: {{{fullname}}} JID: {{{jid}}} {{{desc_chat}}}"
href=
"#"
>
<div
class=
"avatar avatar-{{{chat_status}}}"
>
<span
class=
"status-icon icon-{{{chat_status}}}"
title=
"{{{desc_status}}}"
></span>
{[ if (num_unread) { ]}
<span
class=
"pulse"
></span>
{[ } ]}
</div>
<span
class=
"contact-name unread-msgs"
>
{{{fullname}}}
</span>
{[ if (num_unread) { ]}
<span
class=
"msgs-indicactor"
>
{{{ num_unread }}}
</span>
{[ } ]}
</a>
{[ if (allow_contact_removal) { ]}
<a
class=
"remove-xmpp-contact icon-remove"
title=
"{{{desc_remove}}}"
href=
"#"
></a>
{[ } ]}
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