2
0

jtalk.css 4.2 KB

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