-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
130 lines (112 loc) · 1.94 KB
/
styles.css
File metadata and controls
130 lines (112 loc) · 1.94 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
html,
body,
#viewDiv {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
}
#toggle-bar {
display: flex;
gap: 6px;
background: white;
padding: 6px;
border-radius: 4px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.panel-toggle {
background: white;
color: #323232;
border: 1px solid #ccc;
border-radius: 3px;
padding: 0 10px;
height: 32px;
cursor: pointer;
font-size: 14px;
font-family: inherit;
}
.panel-toggle:hover {
background: #f3f3f3;
color: #323232;
}
.panel-toggle.active {
background: #e0e0e0;
color: #323232;
border-color: #aaa;
}
.panel-toggle.active:hover {
background: #d0d0d0;
}
#home-container .esri-widget--button {
border: 1px solid #ccc !important;
border-radius: 3px !important;
}
#panels-container {
position: absolute;
top: 68px;
left: 15px;
display: flex;
flex-direction: column;
gap: 9px;
z-index: 99;
}
.panel {
height: 300px;
width: 300px;
overflow: hidden;
display: flex;
flex-direction: column;
background: white;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.panel-title {
padding: 6px 8px;
font-size: 13px;
font-weight: 600;
color: #323232;
border-bottom: 1px solid #e0e0e0;
}
#layer-list-container,
#legend-container {
overflow-y: auto;
flex: 1;
min-height: 0;
}
.hidden {
display: none;
}
#layer-search-wrapper {
position: relative;
border-bottom: 1px solid #e0e0e0;
}
#layer-search {
width: 100%;
box-sizing: border-box;
padding: 6px 28px 6px 8px;
border: none;
border-radius: 4px 4px 0 0;
font-size: 13px;
outline: none;
}
#layer-search:focus {
outline: 2px solid #0079c1;
outline-offset: -2px;
}
#layer-search-clear {
position: absolute;
right: 6px;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
cursor: pointer;
font-size: 16px;
color: #999;
line-height: 1;
padding: 0;
}
#layer-search-clear:hover {
color: #323232;
}