123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- .CheckUnitDepMap {
- display: flex;
- flex-direction: row;
- // height: 100%;
- background: #F5F7FA;
- .leftTree {
- position: fixed;
- top: 64px;
- width: 220px;
- height: calc(100vh - 80px);
- background: #FFF;
- border-radius: 4px;
- overflow: hidden;
- padding-top: 16px;
- padding-bottom: 16px;
- margin-right: 16px;
- // border-right:16px solid #F5F7FA;
- .search {
- margin: 0 16px;
- }
- .searchInput {
- border: 1px solid #CFD7E6;
- }
- .bms-ant-tree {
- padding-left: 16px;
- padding-right: 16px;
- }
- .site-tree-search-value {
- display: inline-block;
- position: relative;
- }
- .point {
- display: block;
- content: '';
- width: 6px;
- height: 6px;
- border-radius: 50%;
- z-index:99;
- background: #FF9832;
- &.lastChild {
- background: #FF1966;
- }
- }
- .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode-selected:hover::before,
- .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode-selected::before {
- border-radius: 4px;
- background: rgb(240 242 245 / 100%);
- }
- .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode .bms-ant-tree-node-content-wrapper.bms-ant-tree-node-selected {
- font-weight: bold;
- }
- }
- .rightContent {
- position: relative;
- border-radius: 4px;
- width: calc(100% - 220px);
- padding: 16px;
- margin-left: 236px;
- background: #FFF;
- .content {
- display: flex;
- flex-direction: column;
- .tableToolbar {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 16px;
- .search {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- .searchInput {
- width: 167px;
- height: 24px;
- background: #FFF;
- border-radius: 4px;
- border: 1px solid #CFD7E6;
- }
- &>span {
- font-size: 14px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #17181A;
- }
- }
- .btnGroup {
- .add {
- cursor: pointer;
- display: inline-block;
- font-size: 14px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 24px;
- padding: 0 14px;
- background: #3377FF;
- border-radius: 4px;
- }
- }
- }
- }
- }
- }
|