43 lines
659 B
SCSS
43 lines
659 B
SCSS
#quick_comments_link.newCss {
|
|
display:none;
|
|
}
|
|
|
|
#firstNavigation {
|
|
ol.right-side {
|
|
display:none;
|
|
}
|
|
}
|
|
|
|
div.status_advanced {
|
|
flex-direction: column;
|
|
}
|
|
|
|
div.status_advanced_box {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
a.status_advanced_link {
|
|
width: 95%;
|
|
}
|
|
|
|
.content_div_normalmode {
|
|
overflow-x: auto;
|
|
|
|
&::-webkit-scrollbar {
|
|
background-color: inherit;
|
|
height: 5px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
background: #c4c4c4;
|
|
border-radius: 5px;
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.content_div_normalmode::-webkit-scrollbar-thumb{
|
|
background: #c4c4c4;
|
|
}
|
|
}
|