the-glorious-startpage/css/dashboard.css
2020-06-15 09:28:40 +08:00

74 lines
1.3 KiB
CSS

.dashboard {
background: var(--panel-bg);
height: 100%;
z-index: 7;
/*border-radius: var(--rounded-radius);*/
backdrop-filter: blur(var(--blur-strength));
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.rightDashboardBody {
margin: 10px;
height: auto;
width: 330px;
}
#rightDashboard {
width: 0;
top: 0;
right: 0;
position: absolute;
overflow-x: hidden;
overflow-y: auto;
box-sizing: border-box;
scrollbar-width: none;
transition: width var(--transition-speed);
}
/*Hide scrollbar*/
#rightDashboard::-webkit-scrollbar {
display: none;
}
.showRightDashboard {
width: 350px !important;
z-index: 7 !important;
scrollbar-width: none !important;
}
/*Overlay*/
.dashboardOverlay {
position: absolute;
visibility: none;
top: 0;
left: 0;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
z-index: -2;
filter: blur(var(--blur-strength)) brightness(70%);
transition: visibility var(--transition-speed),
z-index var(--transition-speed);
}
.showDashboardOverlay {
visibility: visible !important;
z-index: 6 !important;
}
@media screen and (max-width: 470px) {
.showRightDashboard {
width: 100vw !important;
margin-right: 0 !important;
}
}