2023-03-12 00:32:03 +08:00
|
|
|
.nav-mask {
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 998;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
background-color: rgba(86, 88, 105, .75);
|
|
|
|
|
padding-left: 420px;
|
|
|
|
|
padding-top: 12px;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: all .5s;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav {
|
|
|
|
|
transition: all .5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-close-button {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-13 23:54:57 +08:00
|
|
|
@media (max-width: 1024px) {
|
2023-03-13 22:20:50 +08:00
|
|
|
.sibling-switch {
|
|
|
|
|
left: 114px;
|
|
|
|
|
top: unset;
|
2023-03-13 23:54:57 +08:00
|
|
|
bottom: 4px;
|
2023-03-13 22:20:50 +08:00
|
|
|
visibility: visible;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-13 23:54:57 +08:00
|
|
|
.resubmit-edit-button {
|
|
|
|
|
display: block;
|
|
|
|
|
visibility: visible;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 767px) {
|
2023-03-12 00:32:03 +08:00
|
|
|
.nav-close-button {
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 100%;
|
|
|
|
|
top: 12px;
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav {
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 999;
|
|
|
|
|
left: calc(-100%);;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
2023-03-11 17:36:10 -05:00
|
|
|
max-width: 320px;
|
2023-03-12 00:32:03 +08:00
|
|
|
width: calc(100% - 60px);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav.active {
|
|
|
|
|
left: 0;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-mask.active {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|