blob: 9acbc4f858356c88b310a65cb4dea4a05da2831c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
input.lm_title:focus,
input.lm_title
{
max-width: unset !important;
transition-delay: unset;
width: 100%;
cursor: text;
}
input.lm_title {
transition-delay: 0.35s;
width: 100px;
cursor: pointer;
}
.tabDocView-drag {
margin: auto;
}
.miniMap-hidden,
.miniMap {
position: absolute;
overflow: hidden;
right: 10;
bottom: 10;
border: solid 1px;
box-shadow: black 0.4vw 0.4vw 0.8vw;
width: 100%;
height: 100%;
transition: all 0.5s;
.miniOverlay {
width: 100%;
height: 100%;
position: absolute;
.miniThumb {
background: #25252525;
position: absolute;
}
}
}
.miniMap-hidden {
position: absolute;
bottom: 0;
right: 0;
width: 45px;
height: 45px;
transform: translate(20px, 20px) rotate(45deg);
border-radius: 30px;
padding: 2px;
> svg {
margin-top: 3px;
transform: translate(0px, 7px);
}
}
|