improve sync ui

This commit is contained in:
Robin Appelman 2024-11-24 20:23:51 +01:00
commit ed63ffa394
8 changed files with 129 additions and 51 deletions

View file

@ -3,19 +3,31 @@
top: 0;
left: 0;
opacity: 0.5;
transition: all 0.5s;
transition: opacity 0.3s;
& .share {
display: flex;
align-items: center;
&.shared {
padding: 2px 2px 2px 6px;
}
}
&:hover {
opacity: 1;
& span.share-text {
opacity: 1;
}
}
& .share-session {
background: transparent;
color: var(--primary-color);
font-size: 200%;
width: 32px;
height: 32px;
width: 24px;
height: 24px;
margin: 10px;
border: none;
cursor: pointer;
@ -27,7 +39,7 @@
}
}
& .share-text {
& input.share-text {
color: var(--primary-color);
background-color: var(--text-secondary);
padding: 5px;
@ -39,4 +51,18 @@
outline: none;
}
}
span.share-text {
color: var(--primary-color);
opacity: 0;
transition: opacity 0.5s;
&:active, &:focus {
outline: none;
}
}
.clients {
margin-left: 10px;
}
}

View file

@ -1,9 +1,9 @@
.map-holder {
position: fixed;
top: 32px;
top: 40px;
left: 0;
width: 100%;
height: calc(100% - 32px - 100px);
height: calc(100% - 40px - 100px);
}
.time-control {