mock平台

View.scss 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. .caseContainer{
  2. padding: 24px;
  3. font-size: 13px;
  4. // display: flex;
  5. overflow: hidden;
  6. >div{
  7. margin: 8px 0px;
  8. // background-color: #ececec;
  9. padding: 16px;
  10. width: 100%;
  11. box-sizing: border-box;
  12. float: left;
  13. .colKey{
  14. font-weight: bold;
  15. text-align: left;
  16. width: 100px;
  17. padding-left: 10px;
  18. }
  19. .colName{
  20. overflow: hidden;
  21. text-overflow: ellipsis;
  22. white-space: nowrap;
  23. }
  24. }
  25. .col-title{margin-bottom: 5px}
  26. .colValue.href {
  27. color: #2395f1;
  28. cursor: pointer;
  29. }
  30. .ace_print-margin{
  31. display: none;
  32. }
  33. .interface-url-icon{
  34. padding-left: 8px;
  35. }
  36. .colBody{
  37. .query-icon {
  38. display: inline-block;
  39. width: .13rem;
  40. margin-right: 4px;
  41. position: relative;
  42. &.text:after {
  43. content: 'T';
  44. display: block;
  45. position: absolute;
  46. right: 2px;
  47. bottom: -2px;
  48. transform: scale(.7);
  49. }
  50. }
  51. }
  52. .colDesc{
  53. margin-bottom: 0px;
  54. padding-bottom: 0px;
  55. }
  56. .ant-table-thead {
  57. th{
  58. color: #6d6c6c;
  59. font-weight: normal;
  60. }
  61. tr{
  62. // background-color: black;
  63. }
  64. }
  65. .ant-table-thead>tr>th{
  66. background: #f7f7f7;
  67. }
  68. .colMethod{
  69. .colValue{
  70. display: inline-block;
  71. border-radius: 4px;
  72. color: #00a854;
  73. background: #cfefdf;
  74. border-color: #cfefdf;
  75. height: 23px;
  76. line-height: 23px;
  77. text-align: center;
  78. font-size: 10px;
  79. margin-right: 7px;
  80. padding: 0 5px;
  81. }
  82. }
  83. .colstatus{
  84. .colValue{
  85. height: 23px;
  86. padding: 0 5px;
  87. line-height: 23px;
  88. display: inline-block;
  89. border-radius: 4px;
  90. color: white;
  91. }
  92. }
  93. .user-img {
  94. width: .3rem;
  95. height: .3rem;
  96. border-radius: 50%;
  97. border: 2px solid #eee;
  98. vertical-align: middle;
  99. margin-right: 4px;
  100. }
  101. .tag-method {
  102. padding: 4px 6px;
  103. margin-right: 8px;
  104. border-radius: 4px;
  105. vertical-align: middle;
  106. }
  107. }
  108. .colHalf {
  109. width: 50%;
  110. float: left;
  111. margin-bottom: .16rem;
  112. .colKey{
  113. padding-bottom: 0px;
  114. text-align: right;
  115. }
  116. }
  117. .panel-view {
  118. .row {
  119. margin-bottom: .16rem;
  120. line-height: 36px;
  121. }
  122. .user-img {
  123. position: absolute;
  124. left: 0;
  125. top: 50%;
  126. transform: translate(0, -50%);
  127. }
  128. .user-name {
  129. padding-left: .38rem;
  130. }
  131. }