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
f90ca8f7
Commit
f90ca8f7
authored
Mar 19, 2018
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused class
parent
8b4553b7
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
17 deletions
+3
-17
css/converse.css
css/converse.css
+1
-3
css/inverse.css
css/inverse.css
+1
-3
sass/_controlbox.scss
sass/_controlbox.scss
+1
-1
sass/_roster.scss
sass/_roster.scss
+0
-4
src/converse-rosterview.js
src/converse-rosterview.js
+0
-6
No files found.
css/converse.css
View file @
f90ca8f7
...
...
@@ -5502,7 +5502,7 @@ body.reset {
#conversejs
#controlbox
.conn-feedback.error
{
color
:
#A53214
;
}
#conversejs
#controlbox
.conn-feedback
p
{
padding-bottom
:
0.5
em
;
}
padding-bottom
:
1
em
;
}
#conversejs
#controlbox
.conn-feedback
p
.feedback-subject.error
{
font-weight
:
bold
;
}
#conversejs
#controlbox
.brand-heading-container
.brand-heading
{
...
...
@@ -5780,8 +5780,6 @@ body.reset {
overflow
:
hidden
;
height
:
calc
(
100%
-
70px
);
/* Custom addition for CSP */
}
#conversejs
#converse-roster
.no-contact-requests
{
height
:
calc
(
~
"100% - 50px - 20px"
);
}
#conversejs
#converse-roster
#online-count
{
display
:
none
;
}
#conversejs
#converse-roster
.search-xmpp
ul
li
.chat-info
{
...
...
css/inverse.css
View file @
f90ca8f7
...
...
@@ -5572,7 +5572,7 @@ body {
#conversejs
#controlbox
.conn-feedback.error
{
color
:
#A53214
;
}
#conversejs
#controlbox
.conn-feedback
p
{
padding-bottom
:
0.5
em
;
}
padding-bottom
:
1
em
;
}
#conversejs
#controlbox
.conn-feedback
p
.feedback-subject.error
{
font-weight
:
bold
;
}
#conversejs
#controlbox
.brand-heading-container
.brand-heading
{
...
...
@@ -5912,8 +5912,6 @@ body {
overflow
:
hidden
;
height
:
calc
(
100%
-
70px
);
/* Custom addition for CSP */
}
#conversejs
#converse-roster
.no-contact-requests
{
height
:
calc
(
~
"100% - 60px - 20px"
);
}
#conversejs
#converse-roster
#online-count
{
display
:
none
;
}
#conversejs
#converse-roster
.search-xmpp
ul
li
.chat-info
{
...
...
sass/_controlbox.scss
View file @
f90ca8f7
...
...
@@ -138,7 +138,7 @@
color
:
$error-color
;
}
p
{
padding-bottom
:
0
.5
em
;
padding-bottom
:
1
em
;
&
.feedback-subject.error
{
font-weight
:
bold
;
}
...
...
sass/_roster.scss
View file @
f90ca8f7
...
...
@@ -8,10 +8,6 @@
padding
:
0
;
overflow
:
hidden
;
&
.no-contact-requests
{
height
:
calc
(
~
"100% -
#{
$controlbox-dropdown-height
*
2
}
- 20px"
);
}
// XXX: FIXME
height
:
calc
(
100%
-
70px
);
...
...
src/converse-rosterview.js
View file @
f90ca8f7
...
...
@@ -708,12 +708,6 @@
const
form
=
this
.
el
.
querySelector
(
'
.roster-filter-form
'
);
this
.
el
.
replaceChild
(
this
.
filter_view
.
render
().
el
,
form
);
this
.
roster_el
=
this
.
el
.
querySelector
(
'
.roster-contacts
'
);
if
(
!
_converse
.
allow_contact_requests
)
{
// XXX: if we ever support live editing of config then
// we'll need to be able to remove this class on the fly.
this
.
el
.
classList
.
add
(
'
no-contact-requests
'
);
}
return
this
;
},
...
...
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