index.css 2.6 KB

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