index.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. @import url("../static/vendor/codemirror/codemirror.css");
  2. @import url("../static/css/bootstrap.min.css");
  3. .wrapper.wp-modifiers {
  4. width:auto;
  5. position: relative;
  6. background: transparent;
  7. }
  8. .panel-title a.x-tooltip {
  9. font-size: 12px;
  10. color: #48b;
  11. margin-left: 10px;
  12. }
  13. .panel-title a.x-tooltip:hover {
  14. text-decoration: underline;
  15. }
  16. .x-toolbox .x-line {
  17. font-size: 12px;
  18. margin-left: 10px;
  19. color: #bbb;
  20. }
  21. .x-toolbox.btns-editing {
  22. position: relative;
  23. top: -6px;
  24. }
  25. .panel-default {
  26. border-color: #ddd;
  27. position: sticky;
  28. top: 0;
  29. z-index: 1000;
  30. }
  31. .panel {
  32. margin-bottom: 20px;
  33. background-color: #fff;
  34. border: 0;
  35. }
  36. .panel-heading {
  37. padding: 10px 15px;
  38. border-bottom: 1px solid transparent;
  39. border-top-left-radius: 3px;
  40. border-top-right-radius: 3px;
  41. }
  42. .panel-default>.panel-heading {
  43. color: #333;
  44. background-color: #f5f5f5;
  45. border: 1px solid #ddd;
  46. border-radius: 4px;
  47. }
  48. #pageContainer>.panel-body {
  49. margin: 0 20px;
  50. }
  51. .panel-body {
  52. padding: 15px;
  53. }
  54. .x-monkeys.table>thead>tr>th,
  55. .x-monkeys.table>tbody>tr>th,
  56. .x-monkeys.table>tfoot>tr>th,
  57. .x-monkeys.table>thead>tr>td,
  58. .x-monkeys.table>tbody>tr>td,
  59. .x-monkeys.table>tfoot>tr>td {
  60. vertical-align: middle;
  61. }
  62. #monkeyList .t-time {
  63. width:170px;
  64. }
  65. #monkeyList .t-operation {
  66. width:260px;
  67. }
  68. #monkeyList .t-number {
  69. width:50px;
  70. }
  71. #monkeyEditor {
  72. display: none;
  73. }
  74. .cur-editing #monkeyList {
  75. display: none;
  76. }
  77. .cur-editing #monkeyEditor {
  78. display: block;
  79. }
  80. #mName,#mPattern,#mFilter,#mRefresh {
  81. width: 500px;
  82. }
  83. #mRequireJs {
  84. width:750px;
  85. }
  86. #monkeyEditor .CodeMirror {
  87. height: auto;
  88. }
  89. #monkeyEditor .CodeMirror-scroll {
  90. min-height: 360px;
  91. }
  92. .xm-icon {
  93. color: #fff;
  94. display: inline-block;
  95. vertical-align: middle;
  96. font: normal normal bold 12px/1 "normal";
  97. text-rendering: auto;
  98. -webkit-font-smoothing: antialiased;
  99. padding: 4px 5px;
  100. border-radius: 4px;
  101. text-align: center;
  102. font-weight: bold;
  103. margin-right: 4px;
  104. }
  105. .xm-icon.xm-enable {
  106. background-color: #07C160;
  107. }
  108. .xm-icon.xm-enable::before {
  109. content: "\542F\7528\4E2D";
  110. }
  111. .xm-icon.xm-disable {
  112. background-color: #f0ad4e;
  113. }
  114. .xm-icon.xm-disable::before {
  115. content: "\5DF2\505C\7528";
  116. }
  117. .xm-icon.xm-create {
  118. background-color: #868482;
  119. }
  120. .xm-icon.xm-create::before {
  121. content: "\672A\4FDD\5B58";
  122. }
  123. .x-tips {
  124. font-size: 12px;
  125. color: #f00;
  126. background-color: #ffffdd;
  127. }
  128. #fehelper_alertmsg {
  129. position: fixed;
  130. top: 0;
  131. left: 0;
  132. right: 0;
  133. z-index: 1000000;
  134. background: #000;
  135. display: inline-block;
  136. color: #fff;
  137. text-align: center;
  138. padding: 10px 10px;
  139. margin: 0 auto;
  140. font-size: 14px;
  141. border-bottom: 1px solid #aaa;
  142. }
  143. #loadDemo {
  144. color:#f00;
  145. }
  146. [v-cloak] {
  147. display: none;
  148. }