jtalk.css 4.2 KB

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