style.less 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. .CheckUnitDepMap {
  2. display: flex;
  3. flex-direction: row;
  4. // height: 100%;
  5. background: #F5F7FA;
  6. .leftTree {
  7. position: fixed;
  8. top: 64px;
  9. width: 220px;
  10. height: calc(100vh - 80px);
  11. background: #FFF;
  12. border-radius: 4px;
  13. overflow: hidden;
  14. padding-top: 16px;
  15. padding-bottom: 16px;
  16. margin-right: 16px;
  17. // border-right:16px solid #F5F7FA;
  18. .search {
  19. margin: 0 16px;
  20. }
  21. .searchInput {
  22. border: 1px solid #CFD7E6;
  23. }
  24. .bms-ant-tree {
  25. padding-left: 16px;
  26. padding-right: 16px;
  27. }
  28. .site-tree-search-value {
  29. display: inline-block;
  30. position: relative;
  31. }
  32. .point {
  33. display: block;
  34. content: '';
  35. width: 6px;
  36. height: 6px;
  37. border-radius: 50%;
  38. z-index:99;
  39. background: #FF9832;
  40. &.lastChild {
  41. background: #FF1966;
  42. }
  43. }
  44. .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode-selected:hover::before,
  45. .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode-selected::before {
  46. border-radius: 4px;
  47. background: rgb(240 242 245 / 100%);
  48. }
  49. .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode .bms-ant-tree-node-content-wrapper.bms-ant-tree-node-selected {
  50. font-weight: bold;
  51. }
  52. }
  53. .rightContent {
  54. position: relative;
  55. border-radius: 4px;
  56. width: calc(100% - 220px);
  57. padding: 16px;
  58. margin-left: 236px;
  59. background: #FFF;
  60. .content {
  61. display: flex;
  62. flex-direction: column;
  63. .tableToolbar {
  64. display: flex;
  65. flex-direction: row;
  66. justify-content: space-between;
  67. align-items: center;
  68. margin-bottom: 16px;
  69. .search {
  70. display: flex;
  71. flex-direction: row;
  72. justify-content: flex-start;
  73. align-items: center;
  74. .searchInput {
  75. width: 167px;
  76. height: 24px;
  77. background: #FFF;
  78. border-radius: 4px;
  79. border: 1px solid #CFD7E6;
  80. }
  81. &>span {
  82. font-size: 14px;
  83. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  84. font-weight: 400;
  85. color: #17181A;
  86. }
  87. }
  88. .btnGroup {
  89. .add {
  90. cursor: pointer;
  91. display: inline-block;
  92. font-size: 14px;
  93. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  94. font-weight: 400;
  95. color: #FFFFFF;
  96. line-height: 24px;
  97. padding: 0 14px;
  98. background: #3377FF;
  99. border-radius: 4px;
  100. }
  101. }
  102. }
  103. }
  104. }
  105. }