You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
@import './panel.scss';
|
|
|
|
|
.icongray{
|
|
|
|
|
color: #D9D0DC;
|
|
|
|
|
}
|
|
|
|
|
.content {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
padding: 3px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
.buildingbtnchecked{
|
|
|
|
|
background-color: #34A6FD;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//header头部
|
|
|
|
|
.header {
|
|
|
|
|
position: relative;
|
|
|
|
|
flex: 5%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items:center;
|
|
|
|
|
min-height: 40px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
.zoom{
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-left: 15px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
img{
|
|
|
|
|
margin-right: 3px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.marginLeftRight {
|
|
|
|
|
margin: 0 8px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
user-select: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
.mat-icon { vertical-align: middle; font-size: 24px; }
|
|
|
|
|
}
|
|
|
|
|
.nameShow{
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
.copytobutn{
|
|
|
|
|
width: 60px;
|
|
|
|
|
min-width: 60px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
span{
|
|
|
|
|
height: 24px;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//头部操作栏
|
|
|
|
|
.headerOperate {
|
|
|
|
|
span{
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
}
|
|
|
|
|
flex: 5%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items:center;
|
|
|
|
|
min-height: 40px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
margin: 3px 0;
|
|
|
|
|
background-color: white;
|
|
|
|
|
button{
|
|
|
|
|
border: 0.5px solid rgb(208, 211, 214);
|
|
|
|
|
margin: 0 2px;
|
|
|
|
|
}
|
|
|
|
|
.editdeletebtn{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.bigeditdeletebtn:hover{
|
|
|
|
|
.editdeletebtn{
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//功能区
|
|
|
|
|
// icon统一样式
|
|
|
|
|
.mat-icon {
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
//左右两侧功能栏 统一样式
|
|
|
|
|
.publicCss {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
height: 100%;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
.functionalDomain {
|
|
|
|
|
flex: 90%;
|
|
|
|
|
.functionalDomainContent {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
.functionalDomainLeft {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
margin-left: 0px;
|
|
|
|
|
transition: margin-left 0.5s;
|
|
|
|
|
min-width: 230px;
|
|
|
|
|
border: 1px solid #E6EAEE;
|
|
|
|
|
width: 230px;
|
|
|
|
|
left: 0;
|
|
|
|
|
.leftDragDiv{
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 3px;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
cursor: e-resize;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.functionalDomainRight {
|
|
|
|
|
margin-right: 0px;
|
|
|
|
|
transition: margin-right 0.5s;
|
|
|
|
|
border: 1px solid #464646;
|
|
|
|
|
width: 230px;
|
|
|
|
|
right: 0;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
//右边导航栏显示隐藏
|
|
|
|
|
.togglePanel2 {
|
|
|
|
|
margin-right: -2000px;
|
|
|
|
|
transition: margin-right 1s;
|
|
|
|
|
}
|
|
|
|
|
//左侧导航栏显示隐藏
|
|
|
|
|
.togglePanel {
|
|
|
|
|
margin-left: -2000px;
|
|
|
|
|
transition: margin-left 1s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//右边操作栏
|
|
|
|
|
.title{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 35px;
|
|
|
|
|
background-color: #464646;
|
|
|
|
|
div{
|
|
|
|
|
width: 50%;
|
|
|
|
|
height: 35px;
|
|
|
|
|
line-height: 35px;
|
|
|
|
|
background-color: #595959;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
span{
|
|
|
|
|
color: white;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//右侧属性
|
|
|
|
|
.property{
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: column;
|
|
|
|
|
.siteproperty{
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
p{
|
|
|
|
|
color: #9c9fa5;
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
}
|
|
|
|
|
.siteproperty_size{
|
|
|
|
|
background-color: #e3e3e3;
|
|
|
|
|
width: 93%;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
min-height: 21px;
|
|
|
|
|
}
|
|
|
|
|
.rightAttribute{
|
|
|
|
|
width: 12%;
|
|
|
|
|
height: 99.5%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
border: 2px solid #464646;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.assetsproperty{
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
height: 100%;
|
|
|
|
|
p{
|
|
|
|
|
color: #9c9fa5;
|
|
|
|
|
margin:1px 0 3px 8px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
span{
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
}
|
|
|
|
|
input{
|
|
|
|
|
height: 18px;
|
|
|
|
|
}
|
|
|
|
|
.biginput{
|
|
|
|
|
display: block;
|
|
|
|
|
width: 88%;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
.smallinput{
|
|
|
|
|
display: block;
|
|
|
|
|
width: 19%;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
}
|
|
|
|
|
.textarea{
|
|
|
|
|
display: block;
|
|
|
|
|
width: 88%;
|
|
|
|
|
height: 50px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
.swiper-button-next{
|
|
|
|
|
right: 6px;
|
|
|
|
|
}
|
|
|
|
|
.swiper-button-prev{
|
|
|
|
|
left: 6px;
|
|
|
|
|
}
|
|
|
|
|
.swiper-container{
|
|
|
|
|
// --swiper-theme-color: #ff6600;/* 设置Swiper风格 */
|
|
|
|
|
// --swiper-navigation-color: #00ff33;/* 单独设置按钮颜色 */
|
|
|
|
|
--swiper-navigation-size:20px;/* 设置按钮大小 */
|
|
|
|
|
}
|
|
|
|
|
.hoverred:hover{
|
|
|
|
|
color: rgb(187, 28, 28);
|
|
|
|
|
}
|
|
|
|
|
.selectDiv{
|
|
|
|
|
height: 21px;
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
select{
|
|
|
|
|
width: 98px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 10px;
|
|
|
|
|
top: 1px;
|
|
|
|
|
border: 1px solid rgb(208, 211, 214);
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.colorBigDiv{
|
|
|
|
|
width: 88%;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
.colorBigTemplateDiv{
|
|
|
|
|
span{
|
|
|
|
|
color: #9c9fa5;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
height: 26px;
|
|
|
|
|
line-height: 26px;
|
|
|
|
|
}
|
|
|
|
|
.colorTemplateDiv{
|
|
|
|
|
width: 65%;
|
|
|
|
|
height: 22px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
margin-left: 26px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.colorDiv{
|
|
|
|
|
.colorLi{
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
list-style: none;
|
|
|
|
|
float: left;
|
|
|
|
|
border: 2px solid white;
|
|
|
|
|
}
|
|
|
|
|
.coloractive{
|
|
|
|
|
border: 2px solid black;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.hideAllTreeNode {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
margin: 3px 0;
|
|
|
|
|
padding: 0 6px 0 10px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
display: flex;
|
|
|
|
|
label { display: inline-block; flex: 1; cursor: pointer; }
|
|
|
|
|
}
|
|
|
|
|
//右侧消防要素
|
|
|
|
|
.firecategories{
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: column;
|
|
|
|
|
.firecategoriesTree{
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
height: 100%;
|
|
|
|
|
mat-tree-node{
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.isLookCss{
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 6px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 解决轮播图蓝框问题
|
|
|
|
|
div:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//没有图片时显示无图片背景图
|
|
|
|
|
.noImgCss{
|
|
|
|
|
background: url(../../../assets/images/noImg.png) no-repeat center center;
|
|
|
|
|
background-size: 88% 100%;/*按比例缩放*/
|
|
|
|
|
}
|
|
|
|
|
.input{
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
margin-left: 9px;
|
|
|
|
|
margin-right: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// tree
|
|
|
|
|
.mat-tree-node{
|
|
|
|
|
min-height: 0;
|
|
|
|
|
height: 32px;
|
|
|
|
|
line-height: 32px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.mat-tree-node:hover{
|
|
|
|
|
background-color: #ccebf8;
|
|
|
|
|
}
|
|
|
|
|
.isLookPattern{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.treeText{
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 65px;
|
|
|
|
|
}
|