mirror of
https://github.com/danbulant/Nertivia-Client
synced 2026-06-24 17:11:43 +00:00
more changes to the design
This commit is contained in:
parent
d3013fa1e9
commit
8a904711fe
26 changed files with 155 additions and 105 deletions
|
|
@ -46,7 +46,7 @@ export default {
|
||||||
.edit-panel {
|
.edit-panel {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
color: white;
|
color: white;
|
||||||
background: #012c36;
|
background: #002038;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
|
@ -60,7 +60,7 @@ export default {
|
||||||
}
|
}
|
||||||
.close-button {
|
.close-button {
|
||||||
color: white;
|
color: white;
|
||||||
background: #304548;
|
background: #0061ad;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
align-self: flex-end;
|
align-self: flex-end;
|
||||||
transition: 0.3s;
|
transition: 0.3s;
|
||||||
|
|
@ -68,9 +68,6 @@ export default {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
.close-button:hover {
|
|
||||||
background: #485b5d;
|
|
||||||
}
|
|
||||||
.message {
|
.message {
|
||||||
color: rgb(214, 214, 214);
|
color: rgb(214, 214, 214);
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
|
||||||
|
|
@ -181,5 +181,6 @@ export default {
|
||||||
color: #b5c4ca;
|
color: #b5c4ca;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -343,6 +343,7 @@ export default {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
padding-bottom: 23px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.load-more-button {
|
.load-more-button {
|
||||||
|
|
|
||||||
|
|
@ -36,13 +36,13 @@
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="typing-outer">
|
|
||||||
<typing-status
|
|
||||||
v-if="typingRecipients[selectedChannelID]"
|
|
||||||
:recipients="typingRecipients[selectedChannelID]"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div class="chat-input-area" v-if="selectedChannelID">
|
<div class="chat-input-area" v-if="selectedChannelID">
|
||||||
|
<div class="typing-outer">
|
||||||
|
<typing-status
|
||||||
|
v-if="typingRecipients[selectedChannelID]"
|
||||||
|
:recipients="typingRecipients[selectedChannelID]"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<div style="position: relative;">
|
<div style="position: relative;">
|
||||||
<transition name="show-up">
|
<transition name="show-up">
|
||||||
<div
|
<div
|
||||||
|
|
@ -176,7 +176,8 @@
|
||||||
<div
|
<div
|
||||||
class="no-message-permission"
|
class="no-message-permission"
|
||||||
v-if="
|
v-if="
|
||||||
sendChannelMessagePermission === false || roleSendMessagePermission === false
|
sendChannelMessagePermission === false ||
|
||||||
|
roleSendMessagePermission === false
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
You don't have permission to send messages in this channel.
|
You don't have permission to send messages in this channel.
|
||||||
|
|
@ -835,11 +836,13 @@ export default {
|
||||||
}
|
}
|
||||||
.typing-outer {
|
.typing-outer {
|
||||||
display: flex;
|
display: flex;
|
||||||
height: 20px;
|
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
margin-left: 10px;
|
position: absolute;
|
||||||
|
top: -25px;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
z-index: 999999;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hidden {
|
.hidden {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -387,6 +387,7 @@ $message-color: rgba(0, 0, 0, 0.3);
|
||||||
color: white;
|
color: white;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background: $message-color;
|
background: $message-color;
|
||||||
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.presence-message .text {
|
.presence-message .text {
|
||||||
|
|
|
||||||
|
|
@ -103,7 +103,9 @@ export default {
|
||||||
position: relative;
|
position: relative;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 50px;
|
height: 65px;
|
||||||
|
padding-left: 5px;
|
||||||
|
padding-right: 5px;
|
||||||
transition: 0.3s;
|
transition: 0.3s;
|
||||||
background-color: rgba(0, 0, 0, 0.2);
|
background-color: rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
|
|
@ -129,7 +131,7 @@ export default {
|
||||||
}
|
}
|
||||||
.tag {
|
.tag {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
color: #b2d1d9;
|
color: rgba(255, 255, 255, 0.72);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -355,7 +355,7 @@ export default {
|
||||||
|
|
||||||
@media (max-width: 600px) {
|
@media (max-width: 600px) {
|
||||||
.navigation {
|
.navigation {
|
||||||
background: linear-gradient(#136a8a, #00b4db);
|
background: #005a9e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -88,18 +88,21 @@ export default {
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.drop-down {
|
.drop-down {
|
||||||
background-color: #044050;
|
background-color: rgba(0, 0, 0, 0.4);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
.title {
|
.title {
|
||||||
|
font-size: 14px;
|
||||||
|
margin-left: 2px;
|
||||||
margin-bottom: 2px;
|
margin-bottom: 2px;
|
||||||
}
|
}
|
||||||
.current-select-box {
|
.current-select-box {
|
||||||
background: #032d38;
|
background-color: rgba(0, 0, 0, 0.4);
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
|
|
@ -133,13 +133,18 @@ export default {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
.settings-box {
|
.settings-box {
|
||||||
height: 600px;
|
height: 630px;
|
||||||
display: flex;
|
display: flex;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
box-shadow: 0px 0px 20px 5px #151515bd;
|
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;
|
border-radius: 4px;
|
||||||
|
backdrop-filter: blur(5px);
|
||||||
}
|
}
|
||||||
.tabs {
|
.tabs {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
@ -171,11 +176,11 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab:hover {
|
.tab:hover {
|
||||||
background: #072935;
|
background: rgba(0, 0, 0, 0.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab.selected {
|
.tab.selected {
|
||||||
background: #051f28;
|
background: rgba(0, 0, 0, 0.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab.warn {
|
.tab.warn {
|
||||||
|
|
@ -189,11 +194,11 @@ export default {
|
||||||
.title {
|
.title {
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
font-size: 25px;
|
font-size: 20px;
|
||||||
background: #05222d;
|
background: rgba(0, 0, 0, 0.4);
|
||||||
}
|
}
|
||||||
.title .material-icons {
|
.title .material-icons {
|
||||||
font-size: 40px;
|
font-size: 30px;
|
||||||
}
|
}
|
||||||
.title div {
|
.title div {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
|
|
||||||
|
|
@ -61,9 +61,9 @@
|
||||||
class="avatar"
|
class="avatar"
|
||||||
:url="update.avatar || avatar"
|
:url="update.avatar || avatar"
|
||||||
:admin="user.admin"
|
:admin="user.admin"
|
||||||
size="100px"
|
size="70px"
|
||||||
emote-size="30px"
|
emote-size="24px"
|
||||||
animation-padding="5px"
|
animation-padding="4px"
|
||||||
/>
|
/>
|
||||||
<div class="button" @click="$refs.avatarBrowser.click()">
|
<div class="button" @click="$refs.avatarBrowser.click()">
|
||||||
Change Avatar
|
Change Avatar
|
||||||
|
|
@ -208,7 +208,6 @@ export default {
|
||||||
.edit-profile {
|
.edit-profile {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
margin-top: 10px;
|
|
||||||
flex: 1;
|
flex: 1;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
@ -217,6 +216,7 @@ export default {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
padding-top: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.change-avatar {
|
.change-avatar {
|
||||||
|
|
@ -227,19 +227,22 @@ export default {
|
||||||
.change-avatar-container {
|
.change-avatar-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
background-color: #044050;
|
background-color: rgba(0, 0, 0, 0.4);
|
||||||
width: 150px;
|
width: 150px;
|
||||||
align-self: center;
|
align-self: center;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
|
margin-left: 29px;
|
||||||
|
border-radius: 4px;
|
||||||
.button {
|
.button {
|
||||||
background: #033442;
|
background: rgba(0, 0, 0, 0.2);
|
||||||
&:hover {
|
&:hover {
|
||||||
background: #032b36;
|
background: rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.avatar {
|
.avatar {
|
||||||
|
margin-top: 10px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
align-self: center;
|
align-self: center;
|
||||||
}
|
}
|
||||||
|
|
@ -247,16 +250,17 @@ export default {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.button {
|
.button {
|
||||||
background: #024554;
|
background: rgba(0, 0, 0, 0.3);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
align-self: center;
|
align-self: center;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: 0.3s;
|
transition: 0.3s;
|
||||||
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
.button:hover {
|
.button:hover {
|
||||||
background: #02303c;
|
background: rgba(0, 0, 0, 0.4);
|
||||||
}
|
}
|
||||||
.button.disabled {
|
.button.disabled {
|
||||||
background: grey;
|
background: grey;
|
||||||
|
|
@ -271,11 +275,16 @@ export default {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background-color: #044050;
|
background-color: rgba(0, 0, 0, 0.4);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
margin-left: 30px;
|
margin-left: 30px;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
border-radius: 4px;
|
||||||
|
.title {
|
||||||
|
font-size: 14px;
|
||||||
|
margin-left: 2px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.outer-input .user-tag .username {
|
.outer-input .user-tag .username {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
|
@ -290,15 +299,22 @@ export default {
|
||||||
}
|
}
|
||||||
.outer-input input {
|
.outer-input input {
|
||||||
width: initial;
|
width: initial;
|
||||||
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.save-button {
|
.save-button {
|
||||||
z-index: 99999;
|
z-index: 99999;
|
||||||
width: 100%;
|
width: 120px;
|
||||||
align-self: initial;
|
align-self: flex-end;
|
||||||
display: block;
|
display: block;
|
||||||
padding: 10px 0px 10px 0px;
|
padding: 10px 0px 10px 0px;
|
||||||
|
background: rgba(0, 0, 0, 0.4);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
margin-right: 20px;
|
||||||
|
&:hover {
|
||||||
|
background: rgba(0, 0, 0, 0.6);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.errors {
|
.errors {
|
||||||
|
|
@ -320,6 +336,7 @@ export default {
|
||||||
}
|
}
|
||||||
.change-avatar-container {
|
.change-avatar-container {
|
||||||
order: 1;
|
order: 1;
|
||||||
|
margin-left: 0;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
.change-avatar {
|
.change-avatar {
|
||||||
|
|
|
||||||
|
|
@ -161,10 +161,10 @@ input {
|
||||||
width: calc(100% - 30px);
|
width: calc(100% - 30px);
|
||||||
}
|
}
|
||||||
input:hover {
|
input:hover {
|
||||||
background: rgba(26, 26, 26, 0.24);
|
background: rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
input:focus {
|
input:focus {
|
||||||
background: rgba(26, 26, 26, 0.527);
|
background: rgba(0, 0, 0, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
.delete-button {
|
.delete-button {
|
||||||
|
|
@ -214,7 +214,7 @@ input:focus {
|
||||||
.emojis-list {
|
.emojis-list {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
background-color: #00000024;
|
background-color: rgba(0, 0, 0, 0.1);
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
@ -234,7 +234,7 @@ input:focus {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
.emoji:hover {
|
.emoji:hover {
|
||||||
background: #052e3b;
|
background: rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
.emoji-name {
|
.emoji-name {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
|
@ -245,15 +245,16 @@ input:focus {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: inherit;
|
width: inherit;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
background: #063443;
|
background: rgba(6, 52, 67, 0.4);
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
transition: 0.3s;
|
transition: 0.3s;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
.button:hover {
|
.button:hover {
|
||||||
background: #052631;
|
background: rgba(6, 52, 67, 0.6);
|
||||||
}
|
}
|
||||||
.button .material-icons {
|
.button .material-icons {
|
||||||
vertical-align: -6px;
|
vertical-align: -6px;
|
||||||
|
|
|
||||||
|
|
@ -170,7 +170,7 @@ export default {
|
||||||
|
|
||||||
.message-example {
|
.message-example {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
background: linear-gradient(#0b4155, #01677e);
|
background: rgba(0, 0, 0, 0.45);
|
||||||
}
|
}
|
||||||
.title {
|
.title {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
|
@ -190,7 +190,7 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.options {
|
.options {
|
||||||
background-color: #023643;
|
background-color: rgba(0, 0, 0, 0.6);
|
||||||
padding-top: 5px;
|
padding-top: 5px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ export default {
|
||||||
.tabs {
|
.tabs {
|
||||||
z-index: 999999;
|
z-index: 999999;
|
||||||
display: flex;
|
display: flex;
|
||||||
background: #073444;
|
background: rgba(0, 0, 0, 0.6);
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
.tabs .tab {
|
.tabs .tab {
|
||||||
|
|
|
||||||
|
|
@ -73,17 +73,17 @@ export default {
|
||||||
transition: 0.2s;
|
transition: 0.2s;
|
||||||
&:hover {
|
&:hover {
|
||||||
color: white;
|
color: white;
|
||||||
background: rgba(0, 0, 0, 0.3);
|
background: rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
&.selected {
|
&.selected {
|
||||||
background: rgba(0, 0, 0, 0.5);
|
background: rgba(0, 0, 0, 0.4);
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.context {
|
.context {
|
||||||
display: flex;
|
display: flex;
|
||||||
background: rgba(0, 0, 0, 0.6);
|
background: rgba(0, 0, 0, 0.5);
|
||||||
.button {
|
.button {
|
||||||
display: flex;
|
display: flex;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
|
|
|
||||||
|
|
@ -190,7 +190,7 @@ export default {
|
||||||
.bar {
|
.bar {
|
||||||
display: flex;
|
display: flex;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: rgba(0, 0, 0, 0.2);
|
background: rgba(0, 0, 0, 0.3);
|
||||||
height: 40px;
|
height: 40px;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
.button {
|
.button {
|
||||||
|
|
|
||||||
|
|
@ -162,7 +162,7 @@ export default {
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped lang="scss">
|
||||||
.notice {
|
.notice {
|
||||||
color: rgb(216, 216, 216);
|
color: rgb(216, 216, 216);
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
|
|
@ -228,23 +228,29 @@ export default {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
.survey-valid {
|
.survey-valid {
|
||||||
color: green;
|
color: #54ff54;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
.survey .button {
|
.survey .button {
|
||||||
color: white;
|
color: white;
|
||||||
background: #024554;
|
background: rgba(0, 0, 0, 0.4);
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
width: 100%;
|
z-index: 99999;
|
||||||
|
width: 120px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
transition: 0.3s;
|
transition: 0.3s;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
margin: 0;
|
||||||
|
align-self: flex-end;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
margin-right: 20px;
|
||||||
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
.survey .button:hover {
|
.survey .button:hover {
|
||||||
background: #02303c;
|
background: rgba(0, 0, 0, 0.6);
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
|
|
@ -264,22 +270,27 @@ export default {
|
||||||
.input {
|
.input {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
background-color: #044050;
|
background-color: rgba(0, 0, 0, 0.4);
|
||||||
|
border-radius: 4px;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
margin-left: 30px;
|
margin-left: 30px;
|
||||||
margin-right: 30px;
|
margin-right: 30px;
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
|
.input-title {
|
||||||
|
font-size: 14px;
|
||||||
|
margin-left: 2px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.input input {
|
.input input {
|
||||||
width: initial;
|
width: initial;
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
background: #032d38;
|
background-color: rgba(0, 0, 0, 0.4);
|
||||||
}
|
}
|
||||||
textarea {
|
textarea {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
resize: none;
|
resize: none;
|
||||||
background: #032d38;
|
background-color: rgba(0, 0, 0, 0.4);
|
||||||
border: none;
|
border: none;
|
||||||
outline: none;
|
outline: none;
|
||||||
color: white;
|
color: white;
|
||||||
|
|
|
||||||
|
|
@ -265,8 +265,13 @@ export default {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
position: relative;
|
position: relative;
|
||||||
box-shadow: 0px 0px 20px 5px #151515bd;
|
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;
|
border-radius: 4px;
|
||||||
|
backdrop-filter: blur(5px);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -301,7 +306,7 @@ export default {
|
||||||
align-content: center;
|
align-content: center;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
background: rgba(0, 0, 0, 0.5);
|
background: rgba(0, 0, 0, 0.4);
|
||||||
padding-top: 30px;
|
padding-top: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -315,7 +320,7 @@ export default {
|
||||||
user-select: auto !important;
|
user-select: auto !important;
|
||||||
}
|
}
|
||||||
.tag {
|
.tag {
|
||||||
color: #ccdadd;
|
color: rgba(255, 255, 255, 0.7);
|
||||||
}
|
}
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
|
|
@ -424,12 +429,13 @@ export default {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
.about-item .key {
|
.about-item .key {
|
||||||
color: #b6dbe1;
|
color: rgba(255, 255, 255, 0.7);
|
||||||
}
|
}
|
||||||
.about-item .name {
|
.about-item .name {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
color: rgba(255, 255, 255, 0.9);
|
||||||
}
|
}
|
||||||
.about-item div {
|
.about-item div {
|
||||||
align-self: center;
|
align-self: center;
|
||||||
|
|
@ -484,16 +490,16 @@ export default {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
border-radius: 50%;
|
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
align-content: center;
|
align-content: center;
|
||||||
transition: 0.2s;
|
transition: 0.2s;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
opacity: 0.7;
|
||||||
}
|
}
|
||||||
.back-button:hover {
|
.back-button:hover {
|
||||||
background: #0c484e;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
@media (max-width: 432px) {
|
@media (max-width: 432px) {
|
||||||
.box {
|
.box {
|
||||||
|
|
|
||||||
|
|
@ -69,7 +69,7 @@ export default {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
background: rgba(19, 107, 139, 0.9);
|
background: linear-gradient(to bottom, #00477e 0, #016dc0);
|
||||||
}
|
}
|
||||||
.darken::after {
|
.darken::after {
|
||||||
content: "";
|
content: "";
|
||||||
|
|
|
||||||
|
|
@ -186,19 +186,22 @@ export default {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: 0.3s;
|
transition: 0.3s;
|
||||||
|
color: rgba(255, 255, 255, 0.8);
|
||||||
&:hover {
|
&:hover {
|
||||||
background: #053c4c;
|
background: rgba(0, 0, 0, 0.2);
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
&.selected {
|
&.selected {
|
||||||
background: #053240;
|
color: white;
|
||||||
|
background: rgba(0, 0, 0, 0.4);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.item:nth-child(2)::before {
|
.item:nth-child(2)::before {
|
||||||
content: "NEW";
|
content: "NEW";
|
||||||
font-size: 14px;
|
font-size: 9px;
|
||||||
background: rgb(255, 55, 55);
|
background: rgb(255, 55, 55);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
padding: 2px;
|
padding: 4px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 10px;
|
right: 10px;
|
||||||
}
|
}
|
||||||
|
|
@ -249,8 +252,7 @@ export default {
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
background: black;
|
background: black;
|
||||||
height: 180px;
|
border-radius: 4px;
|
||||||
border-radius: 5px;
|
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
@ -267,10 +269,12 @@ export default {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
font-size: 17px;
|
font-size: 17px;
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
|
margin-bottom: 10px;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: 0.3s;
|
transition: 0.3s;
|
||||||
color: rgba(255, 255, 255, 0.924);
|
color: rgba(255, 255, 255, 0.924);
|
||||||
|
border-radius: 4px;
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: rgba(0, 0, 0, 0.3);
|
background-color: rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
|
|
@ -302,6 +306,7 @@ export default {
|
||||||
.heart {
|
.heart {
|
||||||
font-size: 60px;
|
font-size: 60px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -320,7 +325,7 @@ export default {
|
||||||
|
|
||||||
.right-panel {
|
.right-panel {
|
||||||
.header {
|
.header {
|
||||||
background: #063443;
|
background: rgba(0, 0, 0, 0.4);
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
height: 54px;
|
height: 54px;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
@ -362,8 +367,8 @@ export default {
|
||||||
.left-panel {
|
.left-panel {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
z-index: 2;
|
z-index: 2222;
|
||||||
background: rgba(19, 107, 139, 0.9);
|
background: linear-gradient(to bottom, #00477e 0, #016dc0);
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
.darken::after {
|
.darken::after {
|
||||||
|
|
|
||||||
|
|
@ -83,7 +83,7 @@ export default {
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.search-header {
|
.search-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
background: #073847;
|
background: rgba(0, 0, 0, 0.55);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100px;
|
height: 100px;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
|
|
||||||
|
|
@ -89,8 +89,7 @@ export default {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 250px;
|
width: 250px;
|
||||||
height: 300px;
|
height: 300px;
|
||||||
background: #024253;
|
background: rgba(0, 0, 0, 0.2);
|
||||||
opacity: 0.9;
|
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
|
@ -99,9 +98,6 @@ export default {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
&:hover {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
.top {
|
.top {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
@ -171,7 +167,7 @@ export default {
|
||||||
.bottom {
|
.bottom {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
background: #04333f;
|
background: rgba(0, 0, 0, 0.3);
|
||||||
flex: 1;
|
flex: 1;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
|
@ -206,7 +202,7 @@ export default {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
background: #022730;
|
background: rgba(0, 0, 0, 0.3);
|
||||||
.material-icons {
|
.material-icons {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -97,8 +97,7 @@ export default {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 250px;
|
width: 250px;
|
||||||
height: 350px;
|
height: 350px;
|
||||||
background: #024253;
|
background: rgba(0, 0, 0, 0.2);
|
||||||
opacity: 0.9;
|
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
|
@ -107,9 +106,6 @@ export default {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
&:hover {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
.top {
|
.top {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
@ -142,7 +138,7 @@ export default {
|
||||||
.bottom {
|
.bottom {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
background: #04333f;
|
background: rgba(0, 0, 0, 0.3);
|
||||||
flex: 1;
|
flex: 1;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,7 @@
|
||||||
<div class="changelog">
|
<div class="changelog">
|
||||||
<div class="change-log">
|
<div class="change-log">
|
||||||
<div v-for="(change, index) in changelog" :key="index" class="change">
|
<div v-for="(change, index) in changelog" :key="index" class="change">
|
||||||
<div
|
<div class="heading" :class="{ 'latest-color': index === 0 }">
|
||||||
class="heading"
|
|
||||||
:style="
|
|
||||||
change.headColor ? `background-color: ${change.headColor}` : ``
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<div class="date">{{ change.date }}</div>
|
<div class="date">{{ change.date }}</div>
|
||||||
<div class="changes-title">{{ change.title }}</div>
|
<div class="changes-title">{{ change.title }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -111,9 +106,12 @@ export default {
|
||||||
}
|
}
|
||||||
.heading {
|
.heading {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
background: #042f3a;
|
background: rgba(0, 0, 0, 0.4);
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
.latest-color {
|
||||||
|
background: rgb(19, 121, 255);
|
||||||
|
}
|
||||||
.information {
|
.information {
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
|
|
@ -122,11 +120,12 @@ export default {
|
||||||
background: rgba(38, 139, 255, 0.87);
|
background: rgba(38, 139, 255, 0.87);
|
||||||
}
|
}
|
||||||
.change-log {
|
.change-log {
|
||||||
background: #054151;
|
background: rgba(0, 0, 0, 0.4);
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
max-width: 700px;
|
max-width: 700px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
.changelog {
|
.changelog {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
@ -153,7 +152,7 @@ export default {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
.see-all-button {
|
.see-all-button {
|
||||||
background: #172a2c;
|
background: rgba(0, 0, 0, 0.4);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
@ -165,6 +164,6 @@ export default {
|
||||||
transition: 0.2s;
|
transition: 0.2s;
|
||||||
}
|
}
|
||||||
.see-all-button:hover {
|
.see-all-button:hover {
|
||||||
background: #0b1415;
|
background: rgba(0, 0, 0, 0.6);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
>
|
>
|
||||||
<transition name="slide-left">
|
<transition name="slide-left">
|
||||||
<server-list
|
<server-list
|
||||||
v-if="($mq === 'mobile' && showLeftPanel) || $mq !== 'mobile'"
|
v-show="($mq === 'mobile' && showLeftPanel) || $mq !== 'mobile'"
|
||||||
v-click-outside="hideLeftPanel"
|
v-click-outside="hideLeftPanel"
|
||||||
class="left-panel"
|
class="left-panel"
|
||||||
/>
|
/>
|
||||||
|
|
@ -110,7 +110,7 @@ export default {
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
background: rgba(19, 107, 139, 0.9);
|
background: linear-gradient(to bottom, #00477e 0, #016dc0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -119,7 +119,7 @@ export default {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
background: rgba(19, 107, 139, 0.9);
|
background: linear-gradient(to bottom, #00477e 0, #016dc0);
|
||||||
}
|
}
|
||||||
.darken::after {
|
.darken::after {
|
||||||
content: "";
|
content: "";
|
||||||
|
|
|
||||||
|
|
@ -78,15 +78,22 @@ export default {
|
||||||
transition: 0.3s;
|
transition: 0.3s;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
padding: 3px;
|
||||||
|
background: rgba(0, 0, 0, 0.3);
|
||||||
|
backdrop-filter: blur(5px);
|
||||||
|
align-content: center;
|
||||||
|
align-content: center;
|
||||||
|
height: 20px;
|
||||||
}
|
}
|
||||||
.animation {
|
.animation {
|
||||||
height: 20px;
|
height: 20px;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
align-self: center;
|
||||||
}
|
}
|
||||||
.text {
|
.text {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
font-size: 13px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,6 @@ const config = [
|
||||||
title: "Saved Notes and bug fixes",
|
title: "Saved Notes and bug fixes",
|
||||||
shortTitle: "",
|
shortTitle: "",
|
||||||
date: "25/01/2019",
|
date: "25/01/2019",
|
||||||
headColor: "#007792",
|
|
||||||
new: ["You can now save your own messages in a separate log."],
|
new: ["You can now save your own messages in a separate log."],
|
||||||
fix: ["Fixed a bug where some role colors would not show correctly."]
|
fix: ["Fixed a bug where some role colors would not show correctly."]
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue