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
2b434197
Commit
2b434197
authored
Nov 06, 2018
by
golangbu
Committed by
JC Brand
Nov 06, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
show_send_button:true parameter not working for me.This pull is a fix for that issue (#1300)
fixes #1033
parent
8ba8a4bc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
CHANGES.md
CHANGES.md
+1
-0
css/converse.css
css/converse.css
+2
-2
sass/_chatbox.scss
sass/_chatbox.scss
+2
-2
No files found.
CHANGES.md
View file @
2b434197
...
@@ -7,6 +7,7 @@
...
@@ -7,6 +7,7 @@
-
#1188 Feature request: drag and drop file to HTTP Upload
-
#1188 Feature request: drag and drop file to HTTP Upload
-
#1268 Switch from SASS variables to CSS custom properties
-
#1268 Switch from SASS variables to CSS custom properties
-
#1278 Replace the default avatar with a SVG version
-
#1278 Replace the default avatar with a SVG version
-
#1033 Setting show_send_button to true didn't work
-
#1306 added option
`notification_delay`
-
#1306 added option
`notification_delay`
-
#1305 added value 'all' for 'show_desktop_notifications' to notifiy even if converse.js is open
-
#1305 added value 'all' for 'show_desktop_notifications' to notifiy even if converse.js is open
...
...
css/converse.css
View file @
2b434197
...
@@ -10174,9 +10174,9 @@ body.reset {
...
@@ -10174,9 +10174,9 @@ body.reset {
#conversejs
.chatbox
.sendXMPPMessage
.chat-textarea.correcting
{
#conversejs
.chatbox
.sendXMPPMessage
.chat-textarea.correcting
{
background-color
:
var
(
--chat-head-color-lighten-50-percent
);
}
background-color
:
var
(
--chat-head-color-lighten-50-percent
);
}
#conversejs
.chatbox
.sendXMPPMessage
.send-button
{
#conversejs
.chatbox
.sendXMPPMessage
.send-button
{
position
:
absolute
;
position
:
static
;
left
:
var
(
--send-button-margin
);
left
:
var
(
--send-button-margin
);
width
:
calc
(
100%
-
2
*
var
(
--send-button-margin
))
;
width
:
100%
;
background-color
:
var
(
--chat-head-color
);
background-color
:
var
(
--chat-head-color
);
color
:
var
(
--inverse-link-color
);
color
:
var
(
--inverse-link-color
);
font-size
:
80%
;
font-size
:
80%
;
...
...
sass/_chatbox.scss
View file @
2b434197
...
@@ -278,9 +278,9 @@
...
@@ -278,9 +278,9 @@
}
}
.send-button
{
.send-button
{
position
:
absolute
;
position
:
static
;
left
:
var
(
--
send-button-margin
);
left
:
var
(
--
send-button-margin
);
width
:
calc
(
100%
-
2
*
var
(
--
send-button-margin
))
;
width
:
100%
;
background-color
:
var
(
--
chat-head-color
);
background-color
:
var
(
--
chat-head-color
);
color
:
var
(
--
inverse-link-color
);
color
:
var
(
--
inverse-link-color
);
font-size
:
80%
;
font-size
:
80%
;
...
...
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