frontend/style/pages/viewer/AnalyseMenu.css
Robin Appelman 5ed8dea705
All checks were successful
CI / checks (push) Successful in 1m7s
viewer playback speed
2025-06-22 23:27:03 +02:00

104 lines
No EOL
1.9 KiB
CSS

.analyse-menu {
position: absolute;
top: 0;
left: 0;
opacity: 0.5;
transition: opacity 0.3s;
color: white;
width: 100%;
.speed {
float: right;
padding: 0.5em;
}
& .share {
display: flex;
align-items: center;
&.shared {
padding: 2px 2px 2px 6px;
}
}
&:hover {
opacity: 1;
& span.share-text {
opacity: 1;
}
}
& button.share-session {
background-image: url("inline://images//link_white.svg");
}
& button.help {
background-image: url("inline://images//help.svg");
}
& button.goto {
background-image: url("inline://images//goto.svg");
}
& button.search {
background-image: url("inline://images//search.svg");
}
& input.share-text {
color: var(--primary-color);
background-color: var(--text-secondary);
padding: 5px;
border: 1px #888 solid;
border-radius: 5px;
margin-top: -3px;
&:active, &:focus {
outline: none;
}
}
span.share-text {
opacity: 0;
transition: opacity 0.5s;
&:active, &:focus {
outline: none;
}
}
.clients {
margin-left: 10px;
}
summary {
font-size: 120%;
margin: 5px;
margin-left: 10px;
}
summary::marker {
content: '';
}
ul {
padding: 0;
margin: 0;
button {
padding-left: 32px;
height: 24px;
margin: 10px;
border: none;
cursor: pointer;
color: white;
background-size: 24px;
background-color: transparent;
background-repeat: no-repeat;
&:active, &:focus {
outline: none;
}
}
}
}