c221dc17 by 杨威

全局弹框阴影和遮罩层样式修改

1 parent 10d41344
...@@ -96,3 +96,12 @@ ol, ul { list-style:none; } ...@@ -96,3 +96,12 @@ ol, ul { list-style:none; }
96 } 96 }
97 } 97 }
98 } 98 }
99 //弹框遮罩层样式
100 .v-modal{
101 opacity: .2;
102 background: #fff;
103 }
104 .el-dialog{
105 -webkit-box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.4);
106 box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.4);
107 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -256,7 +256,7 @@ export default { ...@@ -256,7 +256,7 @@ export default {
256 }, 256 },
257 //获取高度计算lpb内容区高度 257 //获取高度计算lpb内容区高度
258 getHeight() { 258 getHeight() {
259 this.lpbContentHight = window.innerHeight - 276; 259 this.lpbContentHight = window.innerHeight - 285;
260 }, 260 },
261 //创建楼盘 261 //创建楼盘
262 create() { 262 create() {
...@@ -388,7 +388,7 @@ export default { ...@@ -388,7 +388,7 @@ export default {
388 box-sizing: border-box; 388 box-sizing: border-box;
389 padding: 20px 0; 389 padding: 20px 0;
390 background-color: #ffffff; 390 background-color: #ffffff;
391 margin-bottom: 20px; 391 margin-bottom: 15px;
392 .searchContent { 392 .searchContent {
393 box-sizing: border-box; 393 box-sizing: border-box;
394 padding: 0 20px; 394 padding: 0 20px;
......