-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathww-map.css.ts
More file actions
109 lines (89 loc) · 2.05 KB
/
ww-map.css.ts
File metadata and controls
109 lines (89 loc) · 2.05 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
import { css } from 'lit';
export const style = css`
:host{
display: block;
/* overflow: hidden */
}
.toolbox > * {
margin-bottom: 1em;
}
.position {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.position sl-input {
width: calc(50% - 10px);
}
.button-group-toolbar sl-button-group:not(:last-of-type) {
margin-right: var(--sl-spacing-x-small);
}
.marker-icon {
width: 20px !important;
height: 20px !important;
}
.marker-icon::before {
content: '';
position: absolute;
inset: 0;
border-bottom-left-radius: 50%;
border-top-left-radius: 50%;
border-top-right-radius: 50%;
rotate: 45deg;
}
.marker-icon::after {
content: '';
position: absolute;
inset: 6px;
border-radius: 50%;
background-color: white;
}
.marker-icon.marker-icon-red::before {
background-color: red;
}
.marker-icon.marker-icon-green::before {
background-color: green;
}
.marker-icon.marker-icon-blue::before {
background-color: blue;
}
.marker-icon.marker-icon-yellow::before {
background-color: yellow;
}
.mouse-marker-icon {
width: 1.5em;
height: 1.5em;
background-color: blue;
}
#overlay{
position: relative;
display: block;
}
#fsButton{
pointer-events: auto;
position: absolute;
width: 30px;
top: 80px;
left: 12px;
z-index: 10000;
border: 2px solid rgba(0, 0, 0, 0.2);
border-radius: 0.25rem
}
sl-button::part(base) {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
sl-dialog {
z-index: 2000;
}
sl-button {
margin-block: 5px;
width: 100%;
}
sl-button::part(base){
line-height: normal
}
`;