diff --git a/src/components/app/FriendsList.vue b/src/components/app/FriendsList.vue index f27f920..bcd0299 100644 --- a/src/components/app/FriendsList.vue +++ b/src/components/app/FriendsList.vue @@ -147,6 +147,7 @@ export default { color: white; flex-shrink: 0; position: relative; + background: rgba(0, 0, 0, 0.2); } .tab { display: flex; @@ -171,10 +172,10 @@ export default { content: ""; position: absolute; height: 3px; - left: 0; - right: 0; + left: 10px; + right: 10px; bottom: 0; - background: rgb(177, 177, 177); + background: rgba(255, 255, 255, 0.4); } .tab::before { content: ""; @@ -190,8 +191,8 @@ export default { content: ""; position: absolute; height: 3px; - left: 0; - right: 0; + left: 10px; + right: 10px; bottom: 0; background: rgb(255, 255, 255); } diff --git a/src/components/app/MessagePanel.vue b/src/components/app/MessagePanel.vue index 44f2975..23ebb14 100644 --- a/src/components/app/MessagePanel.vue +++ b/src/components/app/MessagePanel.vue @@ -841,7 +841,7 @@ export default { top: -25px; left: 0; right: 0; - z-index: 999999; + z-index: 1; } .hidden { display: none; @@ -1006,7 +1006,7 @@ export default { border-radius: 100px; color: white; position: absolute; - bottom: 15px; + bottom: 30px; right: 25px; height: 52px; z-index: 2; diff --git a/src/components/app/Navigation.vue b/src/components/app/Navigation.vue index 0b5dc01..f81a332 100644 --- a/src/components/app/Navigation.vue +++ b/src/components/app/Navigation.vue @@ -315,10 +315,10 @@ export default { opacity: 0.8; transition: 0.2s; &:hover { - background: #093b4b; + background: rgba(0, 0, 0, 0.2); } &.selected { - background: #042a2b; + background: rgba(0, 0, 0, 0.2); } } diff --git a/src/components/app/Popouts/Popouts/AddFriend.vue b/src/components/app/Popouts/Popouts/AddFriend.vue index ae6e01b..1987c94 100644 --- a/src/components/app/Popouts/Popouts/AddFriend.vue +++ b/src/components/app/Popouts/Popouts/AddFriend.vue @@ -118,13 +118,18 @@ export default { margin: auto; overflow: hidden; box-shadow: 0px 0px 20px 5px #151515bd; - background: linear-gradient(#0b4155, #01677e); + background: linear-gradient( + to bottom, + rgba(0, 87, 153, 0.8) 0, + rgba(0, 118, 209, 0.8) + ); border-radius: 4px; + backdrop-filter: blur(5px); } .header { display: flex; flex-shrink: 0; - background-color: #05222d; + background: rgba(0, 0, 0, 0.4); color: white; height: 50px; align-content: center; @@ -159,12 +164,16 @@ export default { align-self: center; color: white; width: initial; - background: #024554; + background: rgba(0, 0, 0, 0.2); + border-radius: 4px; cursor: pointer; &:hover { - background: #02303c; + background: rgba(0, 0, 0, 0.4); } } +input { + border-radius: 4px; +} .alerts { display: flex; diff --git a/src/components/app/Popouts/Popouts/AddServer.vue b/src/components/app/Popouts/Popouts/AddServer.vue index d322008..c63921b 100644 --- a/src/components/app/Popouts/Popouts/AddServer.vue +++ b/src/components/app/Popouts/Popouts/AddServer.vue @@ -257,14 +257,19 @@ export default { color: white; overflow: hidden; box-shadow: 0px 0px 20px 5px #151515bd; - background: linear-gradient(#0b4155, #01677e); + background: linear-gradient( + to bottom, + rgba(0, 87, 153, 0.8) 0, + rgba(0, 118, 209, 0.8) + ); border-radius: 4px; + backdrop-filter: blur(5px); } .tabs { display: flex; justify-content: center; padding-top: 15px; - background: #05222d; + background: rgba(0, 0, 0, 0.4); flex-shrink: 0; } .tab { @@ -284,7 +289,7 @@ export default { border-bottom: solid 5px white !important; } .tab:hover { - border-bottom: solid 5px rgb(107, 107, 107); + border-bottom: solid 5px rgba(255, 255, 255, 0.4); } .content { @@ -322,8 +327,12 @@ export default { align-self: center; margin-top: 15px; margin-bottom: 10px; - background-color: #044050; + background-color: rgba(0, 0, 0, 0.4); padding: 10px; + border-radius: 4px; +} +.input input { + border-radius: 4px; } .title { @@ -339,7 +348,7 @@ export default { .button { padding: 5px; - background: #024554; + background-color: rgba(0, 0, 0, 0.2); user-select: none; border: none; color: white; @@ -349,9 +358,10 @@ export default { align-self: center; margin: 5px; cursor: pointer; + border-radius: 4px; } .button:hover { - background: #02303c; + background-color: rgba(0, 0, 0, 0.4); } .button-clicked { diff --git a/src/components/app/Popouts/Popouts/DragDropFileUploadDialog.vue b/src/components/app/Popouts/Popouts/DragDropFileUploadDialog.vue index 20784b9..79637d7 100644 --- a/src/components/app/Popouts/Popouts/DragDropFileUploadDialog.vue +++ b/src/components/app/Popouts/Popouts/DragDropFileUploadDialog.vue @@ -30,7 +30,8 @@ user-select: none; overflow: hidden; box-shadow: 0px 0px 20px 5px #151515bd; - background-color: #044050; + background-color: rgba(0, 0, 0, 0.7); + backdrop-filter: blur(5px); border-radius: 4px; } .material-icons { diff --git a/src/components/app/Popouts/Popouts/GDriveLinkMenu.vue b/src/components/app/Popouts/Popouts/GDriveLinkMenu.vue index bda57f2..6d36e19 100644 --- a/src/components/app/Popouts/Popouts/GDriveLinkMenu.vue +++ b/src/components/app/Popouts/Popouts/GDriveLinkMenu.vue @@ -82,8 +82,13 @@ export default { color: white; overflow: hidden; box-shadow: 0px 0px 20px 5px #151515bd; - background: linear-gradient(#0b4155, #01677e); + background: linear-gradient( + to bottom, + rgba(0, 87, 153, 0.8) 0, + rgba(0, 118, 209, 0.8) + ); border-radius: 4px; + backdrop-filter: blur(5px); } .text { color: white; @@ -134,6 +139,7 @@ export default { transition: 0.3s; margin-left: 10px; margin-right: 10px; + border-radius: 4px; } .donate { background: rgb(218, 179, 6); diff --git a/src/components/app/Popouts/Popouts/ServerMemberContext.vue b/src/components/app/Popouts/Popouts/ServerMemberContext.vue index 0c0c580..df7e215 100644 --- a/src/components/app/Popouts/Popouts/ServerMemberContext.vue +++ b/src/components/app/Popouts/Popouts/ServerMemberContext.vue @@ -111,7 +111,7 @@ export default { rolesMenu.style.top = mainMenuY + mainMenu.clientHeight - rolesMenu.clientHeight + "px"; - rolesMenu.style.left = mainMenuX - mainMenu.clientWidth - 22 + "px"; + rolesMenu.style.left = mainMenuX - mainMenu.clientWidth - 11 + "px"; }); }, setPosition() { diff --git a/src/components/app/Popouts/Popouts/uploadDialog.vue b/src/components/app/Popouts/Popouts/uploadDialog.vue index bf75bf1..4c622a7 100644 --- a/src/components/app/Popouts/Popouts/uploadDialog.vue +++ b/src/components/app/Popouts/Popouts/uploadDialog.vue @@ -158,7 +158,7 @@ export default { }, keyDownEvent(event) { const keyCode = event.keyCode; - if (keyCode == 13) { + if (keyCode == 13 && !event.shiftKey) { return this.send(); } if (keyCode == 27) { @@ -201,8 +201,13 @@ export default { position: relative; overflow: hidden; box-shadow: 0px 0px 20px 5px #151515bd; - background-color: #01677e; + background: linear-gradient( + to bottom, + rgba(0, 87, 153, 0.8) 0, + rgba(0, 118, 209, 0.8) + ); border-radius: 4px; + backdrop-filter: blur(5px); } .info { display: flex; @@ -259,14 +264,17 @@ export default { display: flex; align-content: center; align-items: center; - background: #024554; + background: rgba(0, 0, 0, 0.2); + border-radius: 4px; padding: 5px; cursor: pointer; user-select: none; - transition: 0.3s; + transition: 0.2s; + color: rgba(255, 255, 255, 0.8); } .button:hover { - background: #02303c; + background: rgba(0, 0, 0, 0.4); + color: white; } .button .text { margin-left: 5px; @@ -286,7 +294,8 @@ export default { } .chat-input { font-family: "Montserrat", sans-serif; - background: #014655; + background: rgba(0, 0, 0, 0.4); + border-radius: 4px; color: white; width: 100%; height: 20px; diff --git a/src/components/app/relationships/FriendsTemplate.vue b/src/components/app/relationships/FriendsTemplate.vue index 33178b2..fd383ab 100644 --- a/src/components/app/relationships/FriendsTemplate.vue +++ b/src/components/app/relationships/FriendsTemplate.vue @@ -164,10 +164,10 @@ export default { } .friend:hover { - background: #053c4c; + background-color: rgba(0, 0, 0, 0.2); } .friend.selected { - background: #053240; + background-color: rgba(0, 0, 0, 0.4); } .profile-picture { height: 30px; diff --git a/src/components/app/relationships/OfflineFriends.vue b/src/components/app/relationships/OfflineFriends.vue index 5b4c348..2dcf993 100644 --- a/src/components/app/relationships/OfflineFriends.vue +++ b/src/components/app/relationships/OfflineFriends.vue @@ -1,8 +1,10 @@