blob: dd4c0b881d799995067078add987c0bdac6376fd (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
@import '../global/globalCssVariables.module.scss';
.tabDocView-content {
height: 100%;
width: 100%;
}
input.lm_title:focus,
input.lm_title {
max-width: unset !important;
outline: none;
transition-delay: unset;
width: max-content;
cursor: text;
}
input.lm_title {
width: max-content;
cursor: pointer;
}
.lm_iconWrap {
display: flex;
color: black;
width: 15px;
height: 15px;
align-items: center;
align-self: center;
justify-content: center;
margin: 3px;
border-radius: 20%;
.moreInfoDot {
background-color: white;
border-radius: 100%;
width: 3px;
height: 3px;
margin: 0.5px;
}
}
.ffMenu {
display: grid;
grid-auto-rows: 35px;
grid-auto-columns: auto auto auto auto auto;
right: 10px;
bottom: 50px;
position: absolute;
min-height: 35px;
height: max-content;
border: solid 2px black;
border-radius: 5px;
background-color: #bddbe6;
width: max-content;
min-width: 35px;
.ffMenuButton {
display: flex;
width: 35px;
height: 35px;
align-items: center;
justify-content: center;
}
}
.miniMap {
overflow: hidden;
width: 100%;
height: 100%;
transition: all 0.5s;
.miniOverlay {
width: 100%;
height: 100%;
position: absolute;
.miniThumb {
background: #25252525;
position: absolute;
}
}
}
.miniMap-hidden {
cursor: pointer;
position: absolute;
bottom: 5;
right: 5;
}
|