2020-01-07 20:43:48 +00:00
|
|
|
.side-panel {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
width: 100%;
|
|
|
|
left: 0px;
|
|
|
|
top:50%;
|
2020-01-13 13:43:02 +00:00
|
|
|
transition: left 0.2s, top 0.2s;
|
2020-01-07 20:43:48 +00:00
|
|
|
background-color: white;
|
|
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
2021-07-29 14:36:18 +00:00
|
|
|
pointer-events: all;
|
2020-01-07 20:43:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.side-panel.resizing {
|
|
|
|
transition: left 0s, top 0s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.side-panel.collapsed {
|
2024-02-01 14:21:04 +00:00
|
|
|
left:-44rem;
|
2020-01-07 20:43:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.arrow {
|
|
|
|
position: absolute;
|
|
|
|
top: 1rem;
|
|
|
|
left: 100%;
|
|
|
|
background-color: inherit;
|
|
|
|
cursor:pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.arrow i {
|
2020-01-13 13:43:02 +00:00
|
|
|
transition: transform 0.2s;
|
2020-01-07 20:43:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.collapsed .arrow i {
|
|
|
|
-webkit-transform: rotate(180deg);
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.side-panel.hidden {
|
|
|
|
top:100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
height:100% ;
|
|
|
|
width:100%;
|
|
|
|
overflow:hidden;
|
|
|
|
overflow-y:auto;
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
background-color: rgb(255,255,255);
|
|
|
|
}
|
|
|
|
|
|
|
|
.resizegrip {
|
|
|
|
height:2rem;
|
|
|
|
line-height: 1rem;
|
|
|
|
display: none;
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
div.resizegrip > div {
|
|
|
|
position: absolute;
|
|
|
|
top:0px;
|
|
|
|
height: 1rem;
|
|
|
|
width: 100%;
|
|
|
|
background-color: rgb(255,255,255);
|
|
|
|
}
|
|
|
|
|
|
|
|
div.resizegrip > span {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
height:0.3rem;
|
|
|
|
width:4rem;
|
|
|
|
background-color:rgba(0, 0, 0, 0.3);
|
|
|
|
top:-0.3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.resizeable .resizegrip {
|
2024-02-01 14:21:04 +00:00
|
|
|
display:block;
|
2020-01-07 20:43:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.resizeable .content {
|
|
|
|
height:calc(100% - 1rem);
|
|
|
|
top:-1rem;
|
|
|
|
}
|
|
|
|
|
2020-02-25 10:52:27 +00:00
|
|
|
@media screen and (min-width:40rem) {
|
2020-01-07 20:43:48 +00:00
|
|
|
.side-panel {
|
|
|
|
top:0px;
|
|
|
|
width: 22rem;
|
|
|
|
height:100%;
|
|
|
|
left:0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.side-panel.hidden {
|
|
|
|
width: 22rem;
|
2024-02-01 14:21:04 +00:00
|
|
|
left:-22rem;
|
2020-01-07 20:43:48 +00:00
|
|
|
height:100%;
|
2020-04-23 08:50:29 +00:00
|
|
|
top: 0px;
|
2024-02-01 14:21:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.side-panel.extra-wide {
|
|
|
|
top:0px;
|
|
|
|
width: 44rem;
|
|
|
|
height:100%;
|
|
|
|
left:0px;
|
2020-01-07 20:43:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.side-panel.left {
|
|
|
|
top:0px;
|
2020-01-13 13:43:02 +00:00
|
|
|
width: 80%;
|
2020-01-07 20:43:48 +00:00
|
|
|
height:100%;
|
|
|
|
left:0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.side-panel.left.hidden {
|
2020-01-17 15:39:08 +00:00
|
|
|
width: 80%;
|
2020-02-25 10:52:27 +00:00
|
|
|
left:-80%;
|
2020-01-07 20:43:48 +00:00
|
|
|
height:100%;
|
2020-01-13 13:43:02 +00:00
|
|
|
}
|
|
|
|
|
2020-02-25 10:52:27 +00:00
|
|
|
@media screen and (min-width:40rem) {
|
2020-01-13 13:43:02 +00:00
|
|
|
.side-panel.left {
|
|
|
|
width:22rem;
|
|
|
|
}
|
2020-01-17 15:39:08 +00:00
|
|
|
.side-panel.left.hidden {
|
|
|
|
width:22rem;
|
|
|
|
}
|
2020-01-13 13:43:02 +00:00
|
|
|
}
|