serverconfiguration.scss 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. .bf-serverconfiguration{
  2. // width: 98.7%;
  3. height: 540px;
  4. background: #FFFFFF;
  5. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  6. border-radius: 16px;
  7. margin-top: 24px;
  8. >.serverconfiguration_header{
  9. width: 100%;
  10. height: 88px;
  11. display: flex;
  12. align-items: center;
  13. justify-content: space-between;
  14. margin-bottom: 16px;
  15. padding: 0 32px 0 32px;
  16. >.left{
  17. width: 50%;
  18. height: 100%;
  19. display: flex;
  20. align-items: center;
  21. >p{
  22. font-size: 24px;
  23. font-family: Microsoft YaHei;
  24. font-weight: bold;
  25. color: #303133;
  26. margin-top: 0;
  27. margin-bottom: 0;
  28. }
  29. }
  30. >.right{
  31. width: 50%;
  32. height: 100%;
  33. display: flex;
  34. align-items: center;
  35. justify-content: flex-end;
  36. >.relation_server{
  37. height: 32px;
  38. // border: 1px solid #E4E8F0;
  39. // border-radius: 16px;
  40. // padding: 0 23px 0 23px;
  41. // font-size: 16px;
  42. // font-family: Microsoft YaHei;
  43. // font-weight: bold;
  44. // color: #303133;
  45. // display: flex;
  46. // align-items: center;
  47. // justify-content: center;
  48. // cursor: pointer;
  49. margin-right: 16px;
  50. }
  51. >.add_server{
  52. height: 32px;
  53. // border: 1px solid #E4E8F0;
  54. // border-radius: 16px;
  55. // padding: 0 23px 0 23px;
  56. // font-size: 16px;
  57. // font-family: Microsoft YaHei;
  58. // font-weight: bold;
  59. // color: #303133;
  60. // display: flex;
  61. // align-items: center;
  62. // justify-content: center;
  63. // cursor: pointer;
  64. }
  65. }
  66. }
  67. >.listheader{
  68. width: 100%;
  69. height: 64px;
  70. border-radius: 8px;
  71. padding: 0 32px 0 32px;
  72. >ul{
  73. width: 100%;
  74. height: 100%;
  75. display: flex;
  76. background: #4A678E;
  77. border-top-left-radius: 8px;
  78. border-top-right-radius: 8px;
  79. >li{
  80. width: 25%;
  81. height: 100%;
  82. display: flex;
  83. align-items: center;
  84. justify-content: flex-start;
  85. font-size: 16px;
  86. font-family: Microsoft YaHei;
  87. font-weight: bold;
  88. color: #FFFFFF;
  89. padding-left: 47px;
  90. }
  91. }
  92. }
  93. >.content{
  94. width: 100%;
  95. height: 320px;
  96. padding: 0 32px 0 32px;
  97. border-bottom-left-radius: 8px;
  98. border-bottom-right-radius: 8px;
  99. >.el-scrollbar{
  100. border-bottom-left-radius: 8px;
  101. border-bottom-right-radius: 8px;
  102. >.el-scrollbar__wrap{
  103. overflow-x: hidden;
  104. ul{
  105. width: 100%;
  106. height: 64px;
  107. display: flex;
  108. margin: 0;
  109. >li{
  110. width: 25%;
  111. height: 100%;
  112. display: flex;
  113. align-items: center;
  114. justify-content: flex-start;
  115. font-size: 16px;
  116. font-family: Microsoft YaHei;
  117. font-weight: 400;
  118. color: #303133;
  119. padding-left: 47px;
  120. >.edit{
  121. // padding: 0 16px 0 16px;
  122. height: 32px;
  123. // background: #303133;
  124. // border-radius: 16px;
  125. // display: flex;
  126. // align-items: center;
  127. // justify-content: center;
  128. // font-size: 16px;
  129. // font-family: Microsoft YaHei;
  130. // font-weight: 400;
  131. // color: #FFFFFF;
  132. margin-right: 41px;
  133. // cursor: pointer;
  134. }
  135. >.deleter{
  136. // padding: 0 16px 0 16px;
  137. height: 32px;
  138. // border: 1px solid #F56C6C;
  139. // border-radius: 16px;
  140. // display: flex;
  141. // align-items: center;
  142. // justify-content: center;
  143. // font-size: 16px;
  144. // font-family: Microsoft YaHei;
  145. // font-weight: 400;
  146. // color: #F56C6C;
  147. // cursor: pointer;
  148. }
  149. }
  150. }
  151. ul:nth-child(odd){
  152. background: #f6f7fb;
  153. }
  154. ul:nth-child(even){
  155. background: #E3E8EF;
  156. }
  157. }
  158. }
  159. }
  160. }