Files
Moonlight/Moonlight/wwwroot/assets/css/blazor.css
2023-09-06 19:58:12 +02:00

77 lines
1.3 KiB
CSS
Vendored

.my-reconnect-modal {
display: none;
}
.my-reconnect-modal > div {
position: fixed;
inset: 0px;
z-index: 1050;
overflow: hidden;
text-align: center;
font-weight: bold;
transition: visibility 0s linear 500ms;
backdrop-filter: blur(20px);
background-color: #0008;
}
.components-reconnect-hide > div {
display: none;
}
.components-reconnect-show > div {
display: none;
}
.components-reconnect-show > .show {
display: block;
}
.components-reconnect-failed > div {
display: none;
}
.components-reconnect-failed > .failed {
display: block;
}
.components-reconnect-rejected > div {
display: none;
}
.components-reconnect-rejected > .rejected {
display: block;
}
.components-reconnect-hide > div {
display: none;
}
.components-reconnect-show {
display: block;
}
.components-reconnect-failed {
display: block;
}
.components-reconnect-rejected {
display: block;
}
::-webkit-scrollbar {
width: 12px;
background: var(--kt-card-bg);
}
::-webkit-scrollbar-thumb {
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(.5, #a520ca), color-stop(1, #2681cc));
}
.single-color-scrollbar::-webkit-scrollbar-thumb {
background: #6964E4;
}
.single-color-scrollbar::-webkit-scrollbar-thumb:hover {
background: #6964E4;
}