7 changed files with 218 additions and 13 deletions
@ -0,0 +1,87 @@
|
||||
.panelHeader { |
||||
background: linear-gradient(to top,#cdced1,#FFF); |
||||
} |
||||
#panel{ |
||||
.hover { |
||||
width: 18px; |
||||
height: 18px; |
||||
margin-left: 40%; |
||||
border: 1px solid #8E909F; |
||||
border-radius: 3px; |
||||
.mat-icon {font-size: 18px;} |
||||
} |
||||
.hover:hover { |
||||
background-color: #4DA5FA; |
||||
.mat-icon {color: #fff;} |
||||
} |
||||
#panelLibrary .text{ |
||||
box-sizing: border-box; |
||||
margin-left: 10px; |
||||
} |
||||
} |
||||
|
||||
//平面图 |
||||
.sitePlanContent { |
||||
width: 100%; |
||||
height: 36px; |
||||
line-height: 36px; |
||||
box-sizing: border-box; |
||||
padding: 0 10px 0 25px; |
||||
cursor:pointer; |
||||
.mat-icon { |
||||
font-size: 20px; |
||||
} |
||||
} |
||||
//右边操作栏 |
||||
#rightOperate{ |
||||
width: 100px; |
||||
height: 100px; |
||||
position: absolute; |
||||
top: -36px; |
||||
right: -100px; |
||||
z-index: 999; |
||||
background-color: #999; |
||||
} |
||||
|
||||
//素材库图片flex |
||||
.panelLibraryFlex { |
||||
display: flex; |
||||
flex-direction: row; |
||||
flex-wrap: wrap; |
||||
justify-content: space-between; /* 水平居中 */ |
||||
.imgBox { |
||||
width: 70px; |
||||
height: 100px; |
||||
display: inline-block; |
||||
text-align: center; |
||||
border-radius: 3px; |
||||
margin: 5px 0; |
||||
img { |
||||
width: 70px; |
||||
height: auto; |
||||
max-height: 70px; |
||||
cursor:pointer; |
||||
} |
||||
p { |
||||
font-size: 12px; |
||||
cursor:pointer; |
||||
} |
||||
} |
||||
} |
||||
|
||||
//文本溢出 |
||||
.overflowText { |
||||
overflow: hidden; |
||||
text-overflow:ellipsis; |
||||
white-space: nowrap; |
||||
} |
||||
//选中平面图时 |
||||
.selectSitePlan { |
||||
color: #fff; |
||||
background-color: #6BC2FF; |
||||
} |
||||
//选中素材库图片时 |
||||
.selectImg { |
||||
color: #fff; |
||||
background-color: #4DA5FA; |
||||
} |
After Width: | Height: | Size: 40 KiB |
Loading…
Reference in new issue