diff --git a/static/css/style.css b/static/css/style.css
index 9a9813e..2cdc116 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -215,9 +215,9 @@ input {
.clip-win {
position: fixed;
z-index: 9999;
- padding: 6px;
- margin: 5px;
- bottom: 50px;
+ padding: 6px;
+ bottom: 55px;
+ left: 5px;
border: 1px dashed #1E86D7;
background-color: var(--bg-secondary-color);
}
@@ -232,7 +232,7 @@ input {
}
.clip-win.selected-clip {
- min-width: 250px;
+ min-width: 320px;
left: 50%;
transform: translateX(-50%);
border-radius: 15px;
diff --git a/static/img/copy.svg b/static/img/copy.svg
new file mode 100644
index 0000000..0a95072
--- /dev/null
+++ b/static/img/copy.svg
@@ -0,0 +1,46 @@
+
+
+
diff --git a/static/img/delete.svg b/static/img/delete.svg
new file mode 100644
index 0000000..f254c61
--- /dev/null
+++ b/static/img/delete.svg
@@ -0,0 +1,116 @@
+
+
diff --git a/static/img/edit.svg b/static/img/edit.svg
new file mode 100644
index 0000000..91ef233
--- /dev/null
+++ b/static/img/edit.svg
@@ -0,0 +1,101 @@
+
+
diff --git a/static/index.html b/static/index.html
index e72aa6d..5bb8c96 100644
--- a/static/index.html
+++ b/static/index.html
@@ -186,9 +186,17 @@
diff --git a/static/js/app.js b/static/js/app.js
index 4a099bc..ae4b1ef 100644
--- a/static/js/app.js
+++ b/static/js/app.js
@@ -224,7 +224,7 @@ function autosize(el){
setTimeout(function(){
el.style.cssText = 'height:auto; padding:0';
el.style.cssText = 'height:' + el.scrollHeight + 'px';
- $('#reply_clip').css('bottom', (el.scrollHeight + 10) + 'px');
- $('#selected_clip').css('bottom', (el.scrollHeight + 25) + 'px');
+ $('#reply_clip').css('bottom', (el.scrollHeight + 20) + 'px');
+ $('#selected_clip').css('bottom', (el.scrollHeight + 30) + 'px');
},0);
}
\ No newline at end of file
diff --git a/static/js/message.js b/static/js/message.js
index 1aa37a2..97a6608 100644
--- a/static/js/message.js
+++ b/static/js/message.js
@@ -121,10 +121,9 @@ let Messages = class {
static selectedMessageToText() {
var text = "";
- $('.active').each(function() {
- $(this).find('pre').each(function() {
- text += $(this).text() + '\n'
- });
+ $('.message.active').each(function() {
+ text += $(this).find('.message-by').text()+' : ';
+ text += $(this).find('pre').last().text() + '\n';
});
return text.trim();