mirror of
https://github.com/danbulant/Nertivia-Client
synced 2026-06-17 13:31:11 +00:00
design changes
This commit is contained in:
parent
ca97457f27
commit
a4282c11ac
6 changed files with 24 additions and 12 deletions
|
|
@ -46,7 +46,7 @@ export default {
|
|||
.edit-panel {
|
||||
padding: 10px;
|
||||
color: white;
|
||||
background: #0f272a;
|
||||
background: #012c36;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
z-index: 1;
|
||||
|
|
@ -66,6 +66,7 @@ export default {
|
|||
transition: 0.3s;
|
||||
user-select: none;
|
||||
cursor: pointer;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.close-button:hover {
|
||||
background: #485b5d;
|
||||
|
|
|
|||
|
|
@ -407,7 +407,7 @@ export default {
|
|||
<style scoped>
|
||||
.emoji-panel {
|
||||
position: absolute;
|
||||
bottom: 10px;
|
||||
bottom: -50px;
|
||||
right: 20px;
|
||||
max-width: 410px;
|
||||
width: calc(100% - 50px);
|
||||
|
|
@ -417,7 +417,10 @@ export default {
|
|||
}
|
||||
|
||||
.emoji-panel-inner {
|
||||
background: rgb(32, 32, 32);
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
backdrop-filter: blur(5px);
|
||||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
transition: 0.3s;
|
||||
z-index: 99999;
|
||||
}
|
||||
|
|
@ -454,6 +457,7 @@ export default {
|
|||
padding: 2px;
|
||||
min-width: 30px;
|
||||
cursor: pointer;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.emoji-item:hover {
|
||||
background: rgb(59, 59, 59);
|
||||
|
|
@ -497,6 +501,7 @@ export default {
|
|||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
cursor: pointer;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.tab:hover {
|
||||
|
|
@ -520,18 +525,20 @@ export default {
|
|||
height: 0;
|
||||
border-left: 10px solid transparent;
|
||||
border-right: 10px solid transparent;
|
||||
border-top: 15px solid rgb(32, 32, 32);
|
||||
border-top: 15px solid #000000ad;
|
||||
|
||||
align-self: flex-end;
|
||||
margin-right: 60px;
|
||||
margin-right: 46px;
|
||||
}
|
||||
.tooltip {
|
||||
display: none;
|
||||
position: absolute;
|
||||
margin: auto;
|
||||
background: rgb(29, 29, 29);
|
||||
padding: 10px;
|
||||
bottom: -20px;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
backdrop-filter: blur(5px);
|
||||
padding: 5px;
|
||||
border-radius: 4px;
|
||||
bottom: -30px;
|
||||
text-transform: capitalize;
|
||||
user-select: none;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -312,6 +312,7 @@ export default {
|
|||
position: absolute;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
backdrop-filter: blur(3px);
|
||||
border-radius: 4px;
|
||||
padding: 5px;
|
||||
max-width: 150px;
|
||||
white-space: nowrap;
|
||||
|
|
|
|||
|
|
@ -315,7 +315,7 @@ export default {
|
|||
opacity: 0.8;
|
||||
transition: 0.2s;
|
||||
&:hover {
|
||||
background: #074447;
|
||||
background: #093b4b;
|
||||
}
|
||||
&.selected {
|
||||
background: #042a2b;
|
||||
|
|
@ -341,6 +341,7 @@ export default {
|
|||
background: rgba(0, 0, 0, 0.7);
|
||||
backdrop-filter: blur(3px);
|
||||
padding: 5px;
|
||||
border-radius: 4px;
|
||||
max-width: 150px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
|
|
|
|||
|
|
@ -118,7 +118,7 @@ export default {
|
|||
user-select: none;
|
||||
}
|
||||
.GDrive-img {
|
||||
background-image: url(./../../../../assets/Google_Drive_logo.png);
|
||||
background-image: url(./../../../../assets/Google_Drive_logo.webp);
|
||||
}
|
||||
.buttons {
|
||||
margin: auto;
|
||||
|
|
|
|||
|
|
@ -64,10 +64,12 @@ export default {
|
|||
position: absolute;
|
||||
top: 60px;
|
||||
right: 5px;
|
||||
background: rgba(3, 32, 41, 0.9);
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
backdrop-filter: blur(5px);
|
||||
width: 180px;
|
||||
z-index: 4;
|
||||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.status-list {
|
||||
padding: 10px;
|
||||
|
|
@ -80,7 +82,7 @@ export default {
|
|||
}
|
||||
|
||||
.status-list:hover {
|
||||
background: #081619;
|
||||
background: rgba(255, 255, 255, 0.2);;
|
||||
}
|
||||
|
||||
.status-icon {
|
||||
|
|
|
|||
Loading…
Reference in a new issue