debug.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. #debugHost {
  2. display: flex;
  3. flex-direction: column;
  4. /*font-size: 13px;*/
  5. /*color: #4a4a4a;*/
  6. height: 100%;
  7. }
  8. #debugHostBtn {
  9. order: 4;
  10. }
  11. #debugHostBtn a {
  12. background: url('images/console_panel_on.svg') no-repeat center center, linear-gradient(transparent, transparent);
  13. }
  14. #debugHostBtn a.selected, #debugHostBtn a.selected:hover {
  15. background: url('images/console_panel_off.svg') no-repeat center center, linear-gradient(transparent, transparent);
  16. }
  17. #debugToolbar {
  18. /*margin-left: 8px;*/
  19. }
  20. #variablesClearLink {
  21. display: inline-block;
  22. margin-bottom: 10px;
  23. }
  24. #traceClearLink {
  25. display: inline-block;
  26. margin-bottom: 15px;
  27. }
  28. #traceClearLink:hover {
  29. color: #1482C5;
  30. }
  31. #debugScrollContainer
  32. {
  33. overflow: auto;
  34. width: 100%;
  35. -webkit-overflow-scrolling: touch;
  36. flex: 1;
  37. }
  38. #debugContainer {
  39. padding: 10px 0px 10px 0px;
  40. }
  41. #consoleTitle {
  42. clear: right;
  43. padding: 20px 15px;
  44. }
  45. .variableDiv
  46. {
  47. margin-bottom: 20px;
  48. line-height: 16px;
  49. }
  50. #variablesDiv
  51. {
  52. clear: right;
  53. }
  54. #variablesContainer {
  55. padding: 0px 15px 12px 15px;
  56. }
  57. #traceContainer {
  58. margin-bottom: 5px;
  59. padding: 5px 15px 0px 15px;
  60. }
  61. .sectionTitle {
  62. font-size: 14px;
  63. font-weight: bold;
  64. color: #2c2c2c;
  65. display: inline-block;
  66. margin: 8px 0;
  67. }
  68. .debugToolbarButton
  69. {
  70. font-size: 1em;
  71. color: #069;
  72. }
  73. .axEventBlock {
  74. display: inline-block;
  75. width: 100%;
  76. margin: 5px 0px 5px 0px;
  77. line-height: 20px;
  78. /*border-bottom: solid 5px #e7e7e7;*/
  79. }
  80. .axEventContainer {
  81. /*background-color: #e7e7e7;*/
  82. padding: 0px 15px 0px 15px;
  83. }
  84. .axTime {
  85. margin: 0px 0px 0px 5px;
  86. font-size: 12px;
  87. color: #64748B;
  88. display: inline-block;
  89. float: right;
  90. }
  91. .axLabel {
  92. display: inline-block;
  93. color: #2563EB;
  94. }
  95. .axEvent {
  96. font-weight: bold;
  97. overflow: hidden;
  98. text-overflow: ellipsis;
  99. font-weight: 600;
  100. }
  101. .axCaseContainer {
  102. justify-content: space-between;
  103. padding: 0px 15px 0px 25px;
  104. }
  105. .axActionContainer {
  106. justify-content: space-between;
  107. padding: 0px 15px 0px 35px;
  108. color: #64748B;
  109. }
  110. .axInfoContainer {
  111. justify-content: space-between;
  112. padding: 0px 15px 0px 45px;
  113. }
  114. .axCaseContainer {
  115. /*border-top: solid 2px #e7e7e7;*/
  116. /*background-color: #47b6b5;*/
  117. /*background-color: #e7e7e7;*/
  118. /*color: #ffffff;*/
  119. }
  120. .axActionContainer {
  121. /*border-top: solid 3px #e7e7e7;*/
  122. }
  123. .axInfoContainer {
  124. /*border-top: solid 1px #e7e7e7;*/
  125. }
  126. .axCaseItem, .axActionItem, .axInfoItem {
  127. overflow: hidden;
  128. text-overflow: ellipsis;
  129. }
  130. .axCaseItem {
  131. font-weight: 600;
  132. }
  133. .axActionItem {
  134. font-weight: 600;
  135. color: #1e293b;
  136. }
  137. .axInfoItem {
  138. /*color: #8c8c8c;*/
  139. }
  140. .axCaseDescription {
  141. flex: 5 0 33%;
  142. font-weight: 400;
  143. }
  144. /*.axActionDescription, .axInfoDescription {
  145. flex: 5 0 33%;
  146. margin-left: 10px;
  147. text-align: right;
  148. }*/
  149. .axCaseDescription, .axActionDescription {
  150. overflow: hidden;
  151. text-overflow: ellipsis;
  152. white-space: nowrap;
  153. }
  154. .axInfoDescription, .axActionDescription {
  155. color: #8c8c8c;
  156. font-size: 11px;
  157. }
  158. .variableName {
  159. width: 55%;
  160. line-height: 0.92;
  161. text-align: left;
  162. display: inline-block;
  163. word-wrap: break-word;
  164. vertical-align: top;
  165. }
  166. .variableValue {
  167. width: 45%;
  168. line-height: 0.92;
  169. text-align: right;
  170. display: inline-block;
  171. word-wrap: break-word;
  172. }
  173. .variableValue span {
  174. color: #64748B;
  175. }
  176. .traceEvent {
  177. border-bottom: solid 1px #e7e7e7;
  178. }
  179. .tracePausedNotification {
  180. height: 25px;
  181. /*background-color: #e7e7e7;*/
  182. border-radius: 5px;
  183. line-height: 25px;
  184. margin: 5px 10px;
  185. text-align: center
  186. }
  187. .variableList{
  188. width: 100%;
  189. margin-bottom: 4px;
  190. }
  191. .traceOption {
  192. margin-left: 10px;
  193. float: right;
  194. font-size: 12px;
  195. padding: 8px;
  196. height: 28px;
  197. line-height: 10px;
  198. border: 1px solid #CBD5E1;
  199. border-radius: 4px;
  200. font-weight: 500;
  201. box-sizing: border-box;
  202. }
  203. .traceOption:hover {
  204. background-color: rgba(229, 231, 235, 0.4);
  205. }
  206. #traceEmptyState {
  207. margin: auto;
  208. font-size: 14px;
  209. padding: 0 28px;
  210. text-align: center;
  211. color: #64748B;
  212. }
  213. .debugLinksContainer {
  214. text-align: right;
  215. }
  216. .axEventCounter {
  217. display: inline-block;
  218. width: 21px;
  219. height: 21px;
  220. font-size: 12px;
  221. border-radius: 50%;
  222. text-align: center;
  223. color: #ffffff;
  224. background-color: rgba(30, 152, 215, 1);
  225. margin-left: 5px;
  226. float: right;
  227. }