@abi-software/map-side-bar 1.3.30 → 1.3.32

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abi-software/map-side-bar",
3
- "version": "1.3.30",
3
+ "version": "1.3.32",
4
4
  "main": "./dist/map-side-bar.common.js",
5
5
  "files": [
6
6
  "dist/*",
@@ -185,26 +185,25 @@ export default {
185
185
  top: calc(50vh - 80px);
186
186
  right: 0px;
187
187
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
188
- border: solid 1px #e4e7ed;
189
- background-color: #F7FAFF;
188
+ border: solid 1px #8300BF;
189
+ background-color: #f9f2fc;
190
190
  text-align: center;
191
191
  vertical-align: middle;
192
192
  cursor: pointer;
193
193
  pointer-events: auto;
194
194
  }
195
195
 
196
- .el-icon-arrow-left{
197
- font-size: 20px;
198
- padding-top: 8px;
199
- color: #292b66;
200
- }
201
-
202
- .el-icon-arrow-right{
203
- font-size: 20px;
204
- padding-top: 8px;
205
- color: #292b66;
196
+ .el-icon-arrow-left,
197
+ .el-icon-arrow-right
198
+ {
199
+ font-weight: 600;
200
+ margin-top: 12px;
201
+ color: #8300BF;
206
202
  cursor: pointer;
207
203
  pointer-events: auto;
204
+ transform: scaleY(2.0);
205
+ text-align: center;
206
+ vertical-align: middle;
208
207
  }
209
208
 
210
209
  .close-tab{
@@ -215,9 +214,8 @@ export default {
215
214
  z-index: 8;
216
215
  margin-top: calc(50vh - 80px);
217
216
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
218
- border: solid 1px #e4e7ed;
219
- border-right: 0;
220
- background-color: #F7FAFF;
217
+ border: solid 1px #8300BF;
218
+ background-color: #f9f2fc;
221
219
  text-align: center;
222
220
  vertical-align: middle;
223
221
  cursor: pointer;
package/vue.config.js CHANGED
@@ -5,7 +5,7 @@ module.exports = {
5
5
  if(process.env.NODE_ENV === 'production') {
6
6
  //By including element-ui and all abi projects, the problem with element-ui
7
7
  //stylesheet can be avoided.
8
- config.externals = [ nodeExternals() ];
8
+ config.externals = [ nodeExternals({allowlist: [/^marked/]}) ];
9
9
  }
10
10
  },
11
11
  }