jtalk.css 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. body.jtalkBody {
  2. margin-bottom: 350px;
  3. }
  4. #jtalkTabs {
  5. position: fixed;
  6. font-family: helvetica,arial,sans;
  7. font-size: 12px;
  8. line-height: 1;
  9. z-index: 1001;
  10. bottom: 0;
  11. left: 0;
  12. right: 0;
  13. margin: 0;
  14. padding: 0 0 3px 0;
  15. height: 20px;
  16. background: transparent;
  17. }
  18. #jtalkTabs li {
  19. list-style-type: none;
  20. display: inline;
  21. background: #c8c8c8;
  22. font-weight: bold;
  23. color: #414141;
  24. padding: 4px;
  25. border: 1px solid #acacac;
  26. cursor: pointer;
  27. line-height: 14px;
  28. margin: 0;
  29. }
  30. #jtalkTabs li.selected {
  31. background: #dbdbdb;
  32. border-top: 0 none;
  33. padding: 5px 4px;
  34. color: #222;
  35. }
  36. #jtalkTabs li span.close {
  37. margin-left: 3px;
  38. margin-right: 5px;
  39. }
  40. #jtalkTabs li span.close:hover {
  41. color: #e72a2a;
  42. }
  43. #jtalkTabs li.closeAll {
  44. -moz-border-radius: 10px;
  45. -webkit-border-radius: 10px;
  46. border-radius: 10px;
  47. background: #ef3b3b;
  48. color: #e3e3e3;
  49. font-weight: bold;
  50. border: 1px solid #ac1616;
  51. margin: 4px;
  52. padding: 2px 6px;
  53. font-size: 10px;
  54. }
  55. #jtalkTabs li.closeAll:hover {
  56. background: #e72a2a;
  57. }
  58. #jtalk {
  59. position: fixed;
  60. bottom: 27px;
  61. left: 0;
  62. right: 0;
  63. height: 330px;
  64. z-index: 1000;
  65. }
  66. #jtalk .ui-resizable-handle {
  67. background-color: #a8a8a8;
  68. top: 0;
  69. cursor: row-resize;
  70. height: 4px;
  71. left: 0;
  72. position: absolute;
  73. right: 0;
  74. width: auto !important;
  75. }
  76. .jtalkTool {
  77. width: 98%;
  78. background: #dbdbdb;
  79. border-style: solid;
  80. border-width: 1px;
  81. border-color: #a8a8a8;
  82. color: @dark;
  83. font-family: Arial, Helvetica, sans;
  84. font-size: 12px;
  85. line-height: 1.5em;
  86. padding: 15px 1%;
  87. position: absolute;
  88. bottom: 0;
  89. left: 0;
  90. top: 4px;
  91. z-index: 1000;
  92. }
  93. .jtalkTool .jt_box {
  94. width: 98%;
  95. margin: 0;
  96. position: absolute;
  97. top: 15px;
  98. bottom: 45px;
  99. }
  100. .jtalkTool .jt_buttons {
  101. position: absolute;
  102. width: 98%;
  103. bottom: 15px;
  104. }
  105. .jtalkTool .jt_buttons .right {
  106. float: right;
  107. }
  108. .jtalkTool .important {
  109. font-weight: bold;
  110. }
  111. .jtalkTool li {
  112. margin: 0;
  113. padding: 0;
  114. }
  115. .jtalkTool .jt_buttons button,
  116. .jtalkTool .jt_buttons select {
  117. font-size: 12px;
  118. }
  119. .jtalkTool .source {
  120. height: 100%;
  121. }
  122. .jtalkTool textarea,
  123. .jtalkTool input {
  124. border: 1px solid;
  125. border-color: #a8a8a8;
  126. font-family: Arial, Helvetica, sans;
  127. line-height: 1.2em;
  128. font-size: 13px;
  129. position: relative;
  130. padding: 0;
  131. }
  132. .jtalkTool .CodeMirror {
  133. border: 1px solid;
  134. border-color: #a8a8a8;
  135. font-family: Arial, Helvetica, sans;
  136. font-size: 13px;
  137. line-height: 1.3em;
  138. height: 100%;
  139. background: white;
  140. }
  141. .jtalkTool .CodeMirror-scroll {
  142. height: 100%;
  143. }
  144. .talkTool .CodeMirror-scroll pre {
  145. font-family: Arial, Helvetica, sans;
  146. }
  147. .jtalkTool .jt_clear {
  148. clear: both;
  149. }
  150. .jtalkTool .jt_transcript,
  151. .jtalkTool .jt_workspace {
  152. width: 100%;
  153. height: 100%;
  154. }
  155. .jtalkTool .jt_commit {
  156. position: absolute;
  157. top: 140px;
  158. left: 0;
  159. font-size: 12px;
  160. }
  161. .jtalkTool .jt_column {
  162. width: 24%;
  163. padding: 0;
  164. margin: 0;
  165. float: left;
  166. border: 1px solid;
  167. border-color: #a8a8a8;
  168. height: 130px;
  169. overflow-y: scroll;
  170. background: #fff;
  171. position: absolute;
  172. top: 0;
  173. }
  174. .jtalkTool .jt_column.value {
  175. left: 25.2%;
  176. width: 74.8%;
  177. }
  178. .jtalkTool .jt_column.browser {
  179. top: 30px;
  180. }
  181. .jtalkTool .jt_column.categories {
  182. left: 0%;
  183. height: 105px;
  184. }
  185. .jtalkTool .jt_column.classes {
  186. height: 105px;
  187. left: 25.2%
  188. }
  189. .jtalkTool .jt_column.classes ul {
  190. margin-left: 0;
  191. }
  192. .jtalkTool .jt_column.classes ul li {
  193. padding-left: 10px;
  194. margin-left: 0;
  195. }
  196. .jtalkTool .jt_column.protocols {
  197. left: 50.4%
  198. }
  199. .jtalkTool .jt_column.methods {
  200. left: 75.6%
  201. }
  202. .jtalkTool .jt_column li {
  203. list-style-type: none;
  204. padding-left: 5px;
  205. cursor: pointer;
  206. color: #333;
  207. font-weight: bold;
  208. }
  209. .jtalkTool .jt_column li.selected {
  210. background: #e3e3e3;
  211. color: #222;
  212. }
  213. .jtalkTool .jt_column li:hover {
  214. background: #08c;
  215. color: white;
  216. }
  217. .jtalkTool .jt_tabs {
  218. top: 136px;
  219. position: absolute;
  220. left: 25.2%;
  221. padding: 0;
  222. margin: 0;
  223. }
  224. .jtalkTool .jt_tabs li {
  225. color: #666;
  226. font-weight: bold;
  227. cursor: pointer;
  228. list-style-type: none;
  229. float: left;
  230. padding: 2px 4px;
  231. margin-right: 2px;
  232. background: #ccc;
  233. border: 1px solid #a8a8a8;
  234. -moz-border-radius-bottomleft: 8px;
  235. -moz-border-radius-bottomright: 8px;
  236. -webkit-border-bottom-left-radius: 8px;
  237. -webkit-border-bottom-right-radius: 8px;
  238. border-bottom-left-radius: 8px;
  239. border-bottom-right-radius: 8px;
  240. height: 20px;
  241. line-height: 18px;
  242. }
  243. /* .jtalkTool .jt_tabs li:hover { */
  244. /* background: #08c; */
  245. /* color: white; */
  246. /* border-color: #08c; */
  247. /* } */
  248. .jtalkTool .jt_tabs li.selected,
  249. .jtalkTool .jt_tabs li.selected:hover {
  250. background: white;
  251. border: 1px solid #b3b3b3;
  252. border-top: 1px solid white;
  253. color: #222;
  254. }
  255. .jtalkTool .jt_sourceCode {
  256. position: absolute;
  257. top: 175px;
  258. bottom: 0;
  259. left: 0;
  260. right: 0;
  261. }
  262. .jtalkTool .jt_sourceCode textarea.source {
  263. width: 100%;
  264. height: 100%;
  265. }
  266. /* Debugger */
  267. .jtalkTool .jt_box .label {
  268. width: 98%;
  269. font-weight: bold;
  270. text-align: center;
  271. position: absolute;
  272. line-height: 1.2em;
  273. font-size: 16px;
  274. color: red;
  275. }
  276. .jtalkTool .jt_box .jt_column.debugger.contexts {
  277. width: 100%;
  278. top: 30px;
  279. }
  280. /***** IDE - ReferencesBrowser ******/
  281. .jtalkTool .jt_box .implementors {
  282. width: 100%
  283. }
  284. .jtalkTool .jt_box .jt_column.implementors,
  285. .jtalkTool .jt_box .jt_column.senders,
  286. .jtalkTool .jt_box .jt_column.referenced_classes {
  287. top: 30px;
  288. height: 100%;
  289. bottom: 0px;
  290. width: 33%;
  291. }
  292. .jtalkTool .jt_box .jt_column.senders {
  293. left: 33.6%
  294. }
  295. .jtalkTool .jt_box .jt_column.referenced_classes {
  296. left: 67.3%
  297. }
  298. .jtalkTool .jt_box .jt_column.implementors .column_label,
  299. .jtalkTool .jt_box .jt_column.senders .column_label,
  300. .jtalkTool .jt_box .jt_column.referenced_classes .column_label {
  301. background: #dbdbdb
  302. }
  303. .jtalkTool .jt_box .jt_column.implementors .column_label:hover,
  304. .jtalkTool .jt_box .jt_column.senders .column_label:hover,
  305. .jtalkTool .jt_box .jt_column.referenced_classes .column_label:hover {
  306. font-weight: bold;
  307. color: #000;
  308. cursor: default
  309. }