debug.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  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, #traceClear:hover, #traceToggle:hover {
  25. color: #1482C5;
  26. }
  27. #traceClearLink {
  28. display: inline-block;
  29. margin-bottom: 15px;
  30. }
  31. #traceClearLink:hover {
  32. color: #1482C5;
  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. padding: 10px 15px;
  48. }
  49. .variableName
  50. {
  51. font-weight: bold;
  52. }
  53. .variableDiv
  54. {
  55. margin-bottom: 20px;
  56. line-height: 16px;
  57. }
  58. #variablesDiv
  59. {
  60. clear: right;
  61. }
  62. #variablesContainer {
  63. /*border-bottom: solid 1px #e7e7e7;*/
  64. padding: 0px 15px 12px 15px;
  65. }
  66. #traceContainer {
  67. margin-bottom: 5px;
  68. padding: 5px 15px 0px 15px;
  69. }
  70. #variablesTitle {
  71. margin-bottom: 9px;
  72. }
  73. .sectionTitle {
  74. font-size: 12px;
  75. color: #2c2c2c;
  76. display: inline-block;
  77. }
  78. .debugToolbarButton
  79. {
  80. font-size: 1em;
  81. color: #069;
  82. }
  83. .axEventBlock {
  84. display: inline-block;
  85. width: 100%;
  86. margin: 5px 0px 5px 0px;
  87. line-height: 21px;
  88. /*border-bottom: solid 5px #e7e7e7;*/
  89. }
  90. .axEventContainer {
  91. /*background-color: #e7e7e7;*/
  92. padding: 0px 15px 0px 15px;
  93. }
  94. .axTime {
  95. margin: 0px 0px 0px 5px;
  96. font-size: 12px;
  97. color: #575757;
  98. display: inline-block;
  99. float: right;
  100. }
  101. .axLabel {
  102. display: inline-block;
  103. color: #1482C5;
  104. }
  105. .axEvent {
  106. /*margin: 0px 0px 2px 0px;*/
  107. /*font-size: 15px;*/
  108. font-weight: bold;
  109. overflow: hidden;
  110. text-overflow: ellipsis;
  111. text-transform: uppercase;
  112. }
  113. .axCaseContainer {
  114. justify-content: space-between;
  115. padding: 0px 15px 0px 25px;
  116. }
  117. .axActionContainer {
  118. justify-content: space-between;
  119. padding: 0px 15px 0px 35px;
  120. }
  121. .axInfoContainer {
  122. justify-content: space-between;
  123. padding: 0px 15px 0px 45px;
  124. }
  125. .axCaseContainer {
  126. /*border-top: solid 2px #e7e7e7;*/
  127. /*background-color: #47b6b5;*/
  128. /*background-color: #e7e7e7;*/
  129. /*color: #ffffff;*/
  130. }
  131. .axActionContainer {
  132. /*border-top: solid 3px #e7e7e7;*/
  133. }
  134. .axInfoContainer {
  135. /*border-top: solid 1px #e7e7e7;*/
  136. }
  137. .axCaseItem, .axActionItem, .axInfoItem {
  138. overflow: hidden;
  139. text-overflow: ellipsis;
  140. }
  141. .axCaseItem {
  142. /*font-size: 15px;*/
  143. font-weight: bold;
  144. }
  145. .axActionItem {
  146. font-weight: bold;
  147. }
  148. .axInfoItem {
  149. /*color: #8c8c8c;*/
  150. }
  151. .axCaseDescription {
  152. flex: 5 0 33%;
  153. /*padding-left: 10px;*/
  154. /*text-align: right;*/
  155. }
  156. /*.axActionDescription, .axInfoDescription {
  157. flex: 5 0 33%;
  158. margin-left: 10px;
  159. text-align: right;
  160. }*/
  161. .axCaseDescription, .axActionDescription {
  162. overflow: hidden;
  163. text-overflow: ellipsis;
  164. white-space: nowrap;
  165. }
  166. .axInfoDescription, .axActionDescription {
  167. color: #8c8c8c;
  168. font-size: 11px;
  169. }
  170. .variableName {
  171. width: 55%;
  172. line-height: 0.92;
  173. text-align: left;
  174. /*color: #0891b3;*/
  175. display: inline-block;
  176. word-wrap: break-word;
  177. vertical-align: top;
  178. }
  179. .variableValue {
  180. width: 45%;
  181. line-height: 0.92;
  182. text-align: right;
  183. color: #373d48;
  184. display: inline-block;
  185. word-wrap: break-word;
  186. }
  187. .traceEvent {
  188. border-bottom: solid 1px #e7e7e7;
  189. }
  190. .tracePausedNotification {
  191. height: 25px;
  192. /*background-color: #e7e7e7;*/
  193. border-radius: 5px;
  194. line-height: 25px;
  195. margin: 5px 10px;
  196. text-align: center
  197. }
  198. .variableList{
  199. width: 100%;
  200. margin-bottom: 4px;
  201. }
  202. .traceOption {
  203. margin-left: 11px;
  204. height: 16px;
  205. float: right;
  206. font-size: 12px;
  207. /*font-style: italic;*/
  208. line-height: 1.45;
  209. text-align: right;
  210. /*color: #8c8c8c;*/
  211. text-decoration: underline;
  212. display: inline-block;
  213. }
  214. #traceEmptyState {
  215. margin: auto;
  216. width: 179px;
  217. font-size: 11px;
  218. text-align: center;
  219. /*color: #666666;*/
  220. }
  221. .debugLinksContainer {
  222. text-align: right;
  223. }
  224. .axEventCounter {
  225. display: inline-block;
  226. width: 21px;
  227. height: 21px;
  228. font-size: 12px;
  229. border-radius: 50%;
  230. text-align: center;
  231. color: #ffffff;
  232. background-color: rgba(30, 152, 215, 1);
  233. margin-left: 5px;
  234. float: right;
  235. }