diff --git a/resources/js/components/Others/Forms/CopyInput.vue b/resources/js/components/Others/Forms/CopyInput.vue
index 57bf04c9..6c3b1912 100644
--- a/resources/js/components/Others/Forms/CopyInput.vue
+++ b/resources/js/components/Others/Forms/CopyInput.vue
@@ -82,6 +82,7 @@ export default {
display: flex;
align-items: center;
border-left: 1px solid $light_mode_border_darken;
+ cursor: pointer;
&:hover {
background: $text;
@@ -144,6 +145,10 @@ export default {
@media (prefers-color-scheme: dark) {
+ .copy-input {
+ border-color: #333333;
+ }
+
.multi-icon {
background: $dark_mode_foreground;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
@@ -154,8 +159,8 @@ export default {
stroke: $dark_mode_text_primary !important;
}
- & > * {
- border-left: 1px solid $dark_mode_background;
+ .icon-item {
+ border-color: #333333;
&:hover {
background: rgba($theme, 0.1);
diff --git a/resources/js/components/Others/Forms/EmailsInput.vue b/resources/js/components/Others/Forms/EmailsInput.vue
deleted file mode 100644
index 1b6a4417..00000000
--- a/resources/js/components/Others/Forms/EmailsInput.vue
+++ /dev/null
@@ -1,185 +0,0 @@
-
-
-
-
-
{{ isError }}
-
-
-
-
-
-
diff --git a/resources/js/components/Others/Forms/MultiEmailInput.vue b/resources/js/components/Others/Forms/MultiEmailInput.vue
new file mode 100644
index 00000000..318fcb98
--- /dev/null
+++ b/resources/js/components/Others/Forms/MultiEmailInput.vue
@@ -0,0 +1,184 @@
+
+
+
+
+
{{ isError }}
+
+
+
+
+
+
diff --git a/resources/js/components/Others/ShareCreate.vue b/resources/js/components/Others/ShareCreate.vue
index 80e88c99..a8e880f0 100644
--- a/resources/js/components/Others/ShareCreate.vue
+++ b/resources/js/components/Others/ShareCreate.vue
@@ -26,7 +26,7 @@
-
+
@@ -103,7 +103,7 @@
import PopupActions from '@/components/Others/Popup/PopupActions'
import PopupContent from '@/components/Others/Popup/PopupContent'
import PopupHeader from '@/components/Others/Popup/PopupHeader'
- import EmailsInput from '@/components/Others/Forms/EmailsInput'
+ import MultiEmailInput from '@/components/Others/Forms/MultiEmailInput'
import SwitchInput from '@/components/Others/Forms/SwitchInput'
import SelectInput from '@/components/Others/Forms/SelectInput'
import ThumbnailItem from '@/components/Others/ThumbnailItem'
@@ -133,7 +133,7 @@
TabOption,
PopupContent,
PopupHeader,
- EmailsInput,
+ MultiEmailInput,
SelectInput,
SwitchInput,
ButtonBase,
diff --git a/resources/js/components/Others/ShareEdit.vue b/resources/js/components/Others/ShareEdit.vue
index 7d6d59a4..26cec458 100644
--- a/resources/js/components/Others/ShareEdit.vue
+++ b/resources/js/components/Others/ShareEdit.vue
@@ -22,7 +22,7 @@
-
+
@@ -99,7 +99,7 @@
import PopupHeader from '@/components/Others/Popup/PopupHeader'
import SwitchInput from '@/components/Others/Forms/SwitchInput'
import SelectInput from '@/components/Others/Forms/SelectInput'
- import EmailsInput from '@/components/Others/Forms/EmailsInput'
+ import MultiEmailInput from '@/components/Others/Forms/MultiEmailInput'
import ThumbnailItem from '@/components/Others/ThumbnailItem'
import ActionButton from '@/components/Others/ActionButton'
import CopyInput from '@/components/Others/Forms/CopyInput'
@@ -123,7 +123,7 @@
PopupContent,
PopupHeader,
SelectInput,
- EmailsInput,
+ MultiEmailInput,
SwitchInput,
ButtonBase,
CopyInput,