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.
155 lines
2.4 KiB
155 lines
2.4 KiB
.userBox { |
|
width: 100%; |
|
height: 100%; |
|
background: #FFFFFF; |
|
box-sizing: border-box; |
|
padding: 20px; |
|
overflow: hidden; |
|
display: flex; |
|
// flex-direction: column; |
|
|
|
.treebox { |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
.topbox2 { |
|
width: 100%; |
|
height: 36px; |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
margin-top: 20px; |
|
.lefttop { |
|
span { |
|
color: #000D21; |
|
margin-right: 16px; |
|
} |
|
|
|
.yellowspan { |
|
color: rgb(240, 176, 37); |
|
} |
|
} |
|
|
|
.righttop { |
|
height: 36px; |
|
display: flex; |
|
width: 200px; |
|
button { |
|
margin-left: 16px; |
|
} |
|
|
|
nz-input-group { |
|
height: 32px; |
|
} |
|
} |
|
} |
|
.orbox { |
|
width: 300px; |
|
// height: 100%; |
|
overflow-y: auto; |
|
margin-right: 10px; |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
.treeTitle { |
|
width: 100%; |
|
height: 55px; |
|
line-height: 55px; |
|
margin-top: 12px; |
|
display: flex; |
|
justify-content: space-between; |
|
color: #000D21; |
|
box-sizing: border-box; |
|
padding-left: 30px; |
|
padding-right: 180px; |
|
background: rgba(145, 204, 255, 0.2); |
|
border: 1px solid rgba(145, 204, 255, 0.2); |
|
} |
|
.nodebox { |
|
font-size: 15px; |
|
} |
|
tbody { |
|
tr { |
|
td:nth-child(1) { |
|
text-align: right; |
|
} |
|
} |
|
|
|
.operation { |
|
a { |
|
color: #2399FF; |
|
margin-right: 12px; |
|
} |
|
|
|
a:last-child { |
|
color: rgba(0, 13, 33, 0.48); |
|
} |
|
} |
|
} |
|
} |
|
.box{ |
|
flex: 1; |
|
// overflow: auto; |
|
padding-top: 20px; |
|
overflow-y:auto; |
|
display: flex; |
|
flex-direction: column; |
|
height: 100%; |
|
} |
|
.topbox { |
|
width: 100%; |
|
height: 36px; |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
margin-bottom: 12px; |
|
|
|
.lefttop { |
|
span:nth-child(1) { |
|
color: #000D21; |
|
margin-right: 16px; |
|
} |
|
|
|
span:nth-child(2) { |
|
color: rgba(36, 36, 36, 0.24); |
|
} |
|
} |
|
|
|
.righttop { |
|
display: flex; |
|
|
|
button { |
|
margin-left: 16px; |
|
} |
|
|
|
nz-input-group { |
|
height: 32px; |
|
} |
|
} |
|
} |
|
|
|
.tablebox { |
|
flex: 1; |
|
overflow-y: auto; |
|
overflow: auto; |
|
|
|
} |
|
|
|
.pagination { |
|
margin: 15px 0; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
} |
|
|
|
.ortype { |
|
width: 36px; |
|
height: 20px; |
|
background: #2399FF; |
|
opacity: 1; |
|
border-radius: 2px; |
|
font-size: 12px; |
|
margin-right: 8px; |
|
color: #fff; |
|
text-align: center; |
|
}
|
|
|