You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

264 lines
4.4 KiB

3 years ago
  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: 15px;
  23. }
  24. #variablesClearLink:hover {
  25. color: #0a6cd6;
  26. }
  27. #traceClearLink {
  28. display: inline-block;
  29. margin-bottom: 15px;
  30. }
  31. #traceClearLink:hover {
  32. color: #0a6cd6;
  33. }
  34. #debugScrollContainer
  35. {
  36. overflow: auto;
  37. width: 100%;
  38. -webkit-overflow-scrolling: touch;
  39. flex: 1;
  40. }
  41. #debugContainer {
  42. padding: 10px 0px 10px 0px;
  43. }
  44. #consoleTitle {
  45. clear: right;
  46. margin: 12px 0px;
  47. }
  48. .variableName
  49. {
  50. font-weight: bold;
  51. }
  52. .variableDiv
  53. {
  54. margin-bottom: 20px;
  55. line-height: 16px;
  56. }
  57. #variablesDiv
  58. {
  59. clear: right;
  60. }
  61. #variablesContainer {
  62. border-bottom: solid 1px #e7e7e7;
  63. padding: 0px 10px 12px 10px;
  64. }
  65. #traceContainer {
  66. margin-bottom: 5px;
  67. padding: 15px 10px 0px 10px;
  68. }
  69. #variablesTitle {
  70. margin-bottom: 9px;
  71. }
  72. .sectionTitle {
  73. font-size: 11px;
  74. color: #2c2c2c;
  75. display: inline-block;
  76. }
  77. .debugToolbarButton
  78. {
  79. font-size: 1em;
  80. color: #069;
  81. }
  82. .axEventBlock {
  83. display: inline-block;
  84. width: 100%;
  85. margin: 5px 0px 5px 0px;
  86. line-height: 21px;
  87. border-bottom: solid 5px #e7e7e7;
  88. }
  89. .axEventContainer {
  90. background-color: #e7e7e7;
  91. padding: 0px 10px 0px 10px;
  92. }
  93. .axTime {
  94. margin: 0px 0px 0px 5px;
  95. font-size: 10px;
  96. color: #575757;
  97. display: inline-block;
  98. float: right;
  99. }
  100. .axLabel {
  101. display: inline-block;
  102. }
  103. .axEvent {
  104. margin: 0px 0px 2px 0px;
  105. font-size: 15px;
  106. font-weight: bold;
  107. overflow: hidden;
  108. text-overflow: ellipsis;
  109. }
  110. .axCaseContainer, .axActionContainer, .axInfoContainer {
  111. justify-content: space-between;
  112. padding: 0px 10px 0px 10px;
  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-size: 15px;
  132. font-weight: bold;
  133. }
  134. .axActionItem {
  135. font-weight: bold;
  136. }
  137. .axInfoItem {
  138. color: #8c8c8c;
  139. }
  140. .axCaseDescription {
  141. flex: 5 0 33%;
  142. margin-left: 10px;
  143. text-align: right;
  144. }
  145. /*.axActionDescription, .axInfoDescription {
  146. flex: 5 0 33%;
  147. margin-left: 10px;
  148. text-align: right;
  149. }*/
  150. .axCaseDescription, .axActionDescription {
  151. overflow: hidden;
  152. text-overflow: ellipsis;
  153. white-space: nowrap;
  154. }
  155. .axInfoDescription, .axActionDescription {
  156. color: #8c8c8c;
  157. font-size: 11px;
  158. }
  159. .variableName {
  160. width: 55%;
  161. line-height: 0.92;
  162. text-align: left;
  163. color: #0891b3;
  164. display: inline-block;
  165. word-wrap: break-word;
  166. vertical-align: top;
  167. }
  168. .variableValue {
  169. width: 45%;
  170. line-height: 0.92;
  171. text-align: right;
  172. color: #373d48;
  173. display: inline-block;
  174. word-wrap: break-word;
  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. #traceEmptyState.emptyStateContainer {
  188. margin-top: 0px;
  189. }
  190. .variableList{
  191. width: 100%;
  192. margin-bottom: 4px;
  193. }
  194. .traceOption {
  195. margin-left: 11px;
  196. height: 16px;
  197. float: right;
  198. font-size: 12px;
  199. font-style: italic;
  200. line-height: 1.45;
  201. text-align: right;
  202. color: #8c8c8c;
  203. text-decoration: underline;
  204. display: inline-block;
  205. }
  206. .startInstructions {
  207. margin: auto;
  208. width: 179px;
  209. font-size: 11px;
  210. text-align: center;
  211. color: #666666;
  212. }
  213. .startButton {
  214. margin: auto;
  215. margin-top: 10px;
  216. width: 181px;
  217. height: 24px;
  218. border-radius: 2px;
  219. border: solid 1px #008fe0;
  220. text-align: center;
  221. line-height: 24px;
  222. color: #008fe0;
  223. cursor: pointer;
  224. }
  225. .debugLinksContainer {
  226. text-align: right;
  227. }