jtalk.css 5.2 KB

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