frontend/style/pages/viewer/AnalyseMenu.css

97 lines
No EOL
1.8 KiB
CSS

.analyse-menu {
position: absolute;
top: 0;
left: 0;
opacity: 0.5;
transition: opacity 0.3s;
& .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 {
color: white;
padding-left: 32px;
height: 24px;
margin: 10px;
border: none;
cursor: pointer;
background-size: 24px;
background-color: transparent;
background-repeat: no-repeat;
&:active, &:focus {
outline: none;
}
}
}
}