@vtx/map 1.1.18 → 1.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,171 @@
1
+ .vtx-ui-searchmap-searchmodal {
2
+ z-index: 1001;
3
+ }
4
+ .vtx-ui-searchmap-searchmodal .ant-modal {
5
+ width: calc(100% - 200px) !important;
6
+ min-width: 800px;
7
+ height: 70vh;
8
+ }
9
+ .vtx-ui-searchmap-searchmodal .ant-modal .ant-modal-title {
10
+ color: #1890ff;
11
+ }
12
+ .vtx-ui-searchmap-searchmodal .ant-modal .ant-modal-content {
13
+ width: 100%;
14
+ height: 100%;
15
+ }
16
+ .vtx-ui-searchmap-searchmodal .ant-modal .ant-modal-content .ant-modal-body {
17
+ width: 100%;
18
+ height: calc(100% - 108px) !important;
19
+ padding: 0px;
20
+ background-color: #fff;
21
+ }
22
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap {
23
+ width: 100%;
24
+ height: 100%;
25
+ padding-top: 48px;
26
+ -webkit-box-sizing: border-box;
27
+ box-sizing: border-box;
28
+ position: relative;
29
+ overflow: hidden;
30
+ }
31
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-top,
32
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-bottom {
33
+ width: 100%;
34
+ height: 48px;
35
+ position: absolute;
36
+ left: 0px;
37
+ padding: 10px 15px;
38
+ }
39
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-top button,
40
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-bottom button {
41
+ margin-left: 10px;
42
+ }
43
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-top {
44
+ top: 0px;
45
+ border-bottom: 1px solid #d9d9d9;
46
+ }
47
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-top .vtx-ui-searchmap-othermodal {
48
+ position: absolute;
49
+ right: 25px;
50
+ line-height: 28px;
51
+ display: inline-block;
52
+ }
53
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-bottom {
54
+ bottom: 0px;
55
+ border-top: 1px solid #d9d9d9;
56
+ text-align: right;
57
+ }
58
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-content {
59
+ width: 100%;
60
+ height: 100%;
61
+ position: relative;
62
+ padding-left: 25px;
63
+ }
64
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-content .vtx-ui-searchmap-show {
65
+ display: inline-block;
66
+ width: 100%;
67
+ height: 100%;
68
+ }
69
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-content .vtx-ui-searchmap-hidden {
70
+ display: none;
71
+ }
72
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-content .vtx-ui-searchmap-w_l {
73
+ width: 300px !important;
74
+ }
75
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-content .vtx-ui-searchmap-content_left {
76
+ width: 25px;
77
+ height: 100%;
78
+ display: inline-block;
79
+ -webkit-transition-duration: 0.3s;
80
+ transition-duration: 0.3s;
81
+ -webkit-transition-property: width;
82
+ transition-property: width;
83
+ vertical-align: top;
84
+ border-right: 1px solid #d9d9d9;
85
+ position: absolute;
86
+ top: 0px;
87
+ left: 0px;
88
+ z-index: 10;
89
+ background-color: #fff;
90
+ }
91
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-content .vtx-ui-searchmap-content_left .vtx-ui-searchmap-listtitle {
92
+ width: 100%;
93
+ height: 30px;
94
+ line-height: 30px;
95
+ border-bottom: 1px solid #d9d9d9;
96
+ }
97
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-content .vtx-ui-searchmap-content_left .vtx-ui-searchmap-listtitle .vtx-ui-searchmap-title {
98
+ width: calc(100% - 30px);
99
+ display: inline-block;
100
+ padding-left: 15px;
101
+ font-size: 15px;
102
+ }
103
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-content .vtx-ui-searchmap-content_left .vtx-ui-searchmap-listtitle .vtx-ui-searchmap-btn {
104
+ display: inline-block;
105
+ width: 30px;
106
+ text-align: center;
107
+ color: #1890ff;
108
+ height: 30px;
109
+ line-height: 30px;
110
+ cursor: pointer;
111
+ }
112
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-content .vtx-ui-searchmap-content_left .vtx-ui-searchmap-lists {
113
+ width: 100%;
114
+ line-height: 35px;
115
+ border-bottom: 1px solid #d9d9d9;
116
+ font-size: 12px;
117
+ overflow: hidden;
118
+ text-overflow: ellipsis;
119
+ white-space: nowrap;
120
+ padding: 0px 15px;
121
+ cursor: pointer;
122
+ color: #999;
123
+ }
124
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-content .vtx-ui-searchmap-content_left .vtx-ui-searchmap-lists:hover {
125
+ background-color: #ECF6FD;
126
+ color: #1890ff;
127
+ }
128
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-content .vtx-ui-searchmap-content_left .vtx-ui-searchmap-lists.vtx-ui-searchmap-select {
129
+ background-color: #ECF6FD;
130
+ color: #1890ff;
131
+ }
132
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-content .vtx-ui-searchmap-content_left .vtx-ui-searchmap-scrollauto {
133
+ height: calc(100% - 30px);
134
+ overflow-y: auto;
135
+ }
136
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-content .vtx-ui-searchmap-content_right {
137
+ width: 100%;
138
+ height: 100%;
139
+ display: inline-block;
140
+ -webkit-transition-duration: 0.3s;
141
+ transition-duration: 0.3s;
142
+ -webkit-transition-property: width;
143
+ transition-property: width;
144
+ }
145
+ .vtx-ui-searchmap-searchmodal .vtx-ui-searchmap-searchmap .vtx-ui-searchmap-content .vtx-ui-searchmap-btn {
146
+ text-align: center;
147
+ color: #1890ff;
148
+ height: 30px;
149
+ line-height: 30px;
150
+ cursor: pointer;
151
+ }
152
+ .vtx-ui-searchmap-showlabel {
153
+ margin-left: 0;
154
+ width: 100px;
155
+ line-height: 25px;
156
+ text-align: center;
157
+ position: relative;
158
+ left: -38px;
159
+ background-color: #222020;
160
+ opacity: 0.6;
161
+ border-radius: 5px;
162
+ color: #FFF;
163
+ padding: 2px 8px;
164
+ text-overflow: ellipsis;
165
+ white-space: nowrap;
166
+ word-break: normal;
167
+ overflow: hidden;
168
+ }
169
+ .vtx-ui-searchmap-hiddenlabel {
170
+ display: none;
171
+ }