diff --git a/packages/presentation/src/components/Card.svelte b/packages/presentation/src/components/Card.svelte
index 6ca7fa2e21..9e8ccdb4f6 100644
--- a/packages/presentation/src/components/Card.svelte
+++ b/packages/presentation/src/components/Card.svelte
@@ -124,7 +124,6 @@
right: 0;
background-color: var(--theme-card-bg);
border-radius: 1.25rem;
- backdrop-filter: blur(15px);
box-shadow: var(--theme-card-shadow);
z-index: -1;
}
diff --git a/packages/presentation/src/components/MessageBox.svelte b/packages/presentation/src/components/MessageBox.svelte
index 5e12f9aaab..32d52d4b0c 100644
--- a/packages/presentation/src/components/MessageBox.svelte
+++ b/packages/presentation/src/components/MessageBox.svelte
@@ -25,11 +25,11 @@
@@ -43,15 +43,8 @@
background: var(--theme-msgbox-bg);
border-radius: 1.25rem;
user-select: none;
- box-shadow: 0px 20px 70px rgba(0, 0, 0, .4);
- backdrop-filter: blur(10px);
+ box-shadow: var(--theme-msgbox-shadow);
- .title {
- margin-bottom: 1rem;
- font-weight: 500;
- font-size: 1rem;
- color: var(--theme-caption-color);
- }
.message {
margin-bottom: 1.75rem;
color: var(--theme-content-accent-color);
diff --git a/packages/presentation/src/components/SpaceCreateCard.svelte b/packages/presentation/src/components/SpaceCreateCard.svelte
index 7e4e6bfc03..fdf40dfe7c 100644
--- a/packages/presentation/src/components/SpaceCreateCard.svelte
+++ b/packages/presentation/src/components/SpaceCreateCard.svelte
@@ -107,7 +107,6 @@
right: 0;
background-color: var(--theme-card-bg);
border-radius: 1.25rem;
- backdrop-filter: blur(24px);
box-shadow: var(--theme-card-shadow);
z-index: -1;
}
diff --git a/packages/theme/styles/_colors.scss b/packages/theme/styles/_colors.scss
index ddcd36609a..1f100a6aa6 100644
--- a/packages/theme/styles/_colors.scss
+++ b/packages/theme/styles/_colors.scss
@@ -67,12 +67,13 @@
--theme-incoming-msg: rgba(67, 67, 72, .3);
--theme-outcoming-msg: rgba(67, 67, 72, .6);
- --theme-card-bg: rgba(222, 222, 240, .2);
+ --theme-card-bg: #282830;
--theme-card-bg-dark: rgba(222, 222, 240, .1);
--theme-card-divider: rgba(255, 255, 255, .1);
- --theme-card-shadow: 0px 15px 60px rgba(24, 25, 28, .2);
+ --theme-card-shadow: 0px 15px 60px rgba(24, 25, 28, .8);
--theme-avatar-border: rgba(255, 255, 255, .1);
- --theme-msgbox-bg: rgba(170, 170, 191, .25);
+ --theme-msgbox-bg: #26262B;
+ --theme-msgbox-shadow: 0px 20px 70px rgba(0, 0, 0, .4);
--theme-zone-bg: rgba(255, 255, 255, .05);
--theme-zone-border: rgba(255, 255, 255, .2);
--theme-zone-border-lite: rgba(255, 255, 255, .16);
@@ -148,12 +149,13 @@
--theme-incoming-msg: rgba(67, 67, 72, .3);
--theme-outcoming-msg: rgba(67, 67, 72, .6);
- --theme-card-bg: rgba(222, 222, 240, .2);
+ --theme-card-bg: #282830;
--theme-card-bg-dark: rgba(222, 222, 240, .1);
--theme-card-divider: rgba(255, 255, 255, .1);
- --theme-card-shadow: 0px 34px 74px rgba(0, 0, 0, 0.55);
+ --theme-card-shadow: 0px 15px 60px rgba(24, 25, 28, .8);
--theme-avatar-border: rgba(255, 255, 255, .1);
- --theme-msgbox-bg: rgba(170, 170, 191, .25);
+ --theme-msgbox-bg: #45444F;
+ --theme-msgbox-shadow: 0px 20px 70px rgba(0, 0, 0, .4);
--theme-zone-bg: rgba(255, 255, 255, .05);
--theme-zone-border: rgba(255, 255, 255, .2);
--theme-zone-border-lite: rgba(255, 255, 255, .16);
@@ -231,9 +233,10 @@
--theme-card-bg: #FFF;
--theme-card-bg-dark: rgba(255, 255, 255, .3);
--theme-card-divider: rgba(0, 0, 0, .1);
- --theme-card-shadow: 0px 24px 74px rgba(100, 89, 89, .5);
+ --theme-card-shadow: 0px 15px 60px rgba(24, 25, 28, .2);
--theme-avatar-border: transparent;
- --theme-msgbox-bg: rgba(170, 170, 191, .25);
+ --theme-msgbox-bg: #F2F2F2;
+ --theme-msgbox-shadow: 0px 20px 70px rgba(0, 0, 0, .2);
--theme-zone-bg: rgba(0, 0, 0, .05);
--theme-zone-border: rgba(0, 0, 0, .2);
--theme-zone-border-lite: rgba(0, 0, 0, .16);
diff --git a/packages/theme/styles/_layouts.scss b/packages/theme/styles/_layouts.scss
index 583736302b..034c791515 100644
--- a/packages/theme/styles/_layouts.scss
+++ b/packages/theme/styles/_layouts.scss
@@ -201,6 +201,7 @@ p:last-child { margin-block-end: 0; }
.mt-10 { margin-top: 2.5rem; }
.mt-14 { margin-top: 3.5rem; }
.mb-1 { margin-bottom: .25rem; }
+.mb-4 { margin-bottom: 1rem; }
/* --------- */
.relative { position: relative; }
diff --git a/plugins/view-assets/assets/icons.svg b/plugins/view-assets/assets/icons.svg
index 515039fcf4..adf229c00b 100644
--- a/plugins/view-assets/assets/icons.svg
+++ b/plugins/view-assets/assets/icons.svg
@@ -23,7 +23,10 @@
-
+
+
+
+
diff --git a/plugins/view-assets/lang/en.json b/plugins/view-assets/lang/en.json
index d946a2715d..081811d37e 100644
--- a/plugins/view-assets/lang/en.json
+++ b/plugins/view-assets/lang/en.json
@@ -2,6 +2,8 @@
"string": {
"MoveClass": "Move {class}",
"SelectToMove": "Select the {classLabel} you want to move {class} to.",
- "Delete": "Delete"
+ "Delete": "Delete",
+ "Move": "Move",
+ "Cancel": "Cancel"
}
}
diff --git a/plugins/view-resources/src/components/Move.svelte b/plugins/view-resources/src/components/Move.svelte
index e49c867331..005b2f2b49 100644
--- a/plugins/view-resources/src/components/Move.svelte
+++ b/plugins/view-resources/src/components/Move.svelte
@@ -67,10 +67,10 @@
-