amber.css 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  1. body.jtalkBody {
  2. margin-bottom: 350px;
  3. }
  4. #jtalkTabs, #jtalk .jt_tabs {
  5. margin: 0;
  6. padding: 0;
  7. background: url("../images/sprite.png") #DBD9C9 0 -27px;
  8. height: 22px;
  9. width: 100%;
  10. list-style: none;
  11. font-weight: bold;
  12. }
  13. #jtalkTabs li, #jtalk .jt_tabs li {
  14. padding: 0 1px;
  15. cursor: pointer;
  16. color: #565656;
  17. max-width: 200px;
  18. float:left;
  19. }
  20. #jtalk .ltab, #jtalk .rtab, #jtalk .mtab {
  21. height: 22px;
  22. float: left;
  23. }
  24. #jtalk .ltab, #jtalk .rtab {
  25. width: 8px;
  26. }
  27. #jtalk .rtab {
  28. margin-right: 1px;
  29. }
  30. #jtalk .mtab {
  31. line-height: 20px;
  32. }
  33. #jtalkTabs li:hover .ltab,
  34. #jtalk .jt_tabs li:hover .ltab {
  35. background: url("../images/sprite.png") -16px -96px;
  36. }
  37. #jtalkTabs li:hover .mtab,
  38. #jtalk .jt_tabs li:hover .mtab {
  39. background: url("../images/sprite.png") 0 -73px;
  40. }
  41. #jtalkTabs li:hover .rtab,
  42. #jtalk .jt_tabs li:hover .rtab {
  43. background: url("../images/sprite.png") -24px -96px;
  44. }
  45. #jtalkTabs li.selected,
  46. #jtalk .jt_tabs li.selected {
  47. color: #111;
  48. }
  49. #jtalkTabs li.selected .ltab,
  50. #jtalk .jt_tabs li.selected .ltab {
  51. background: url("../images/sprite.png") 0px -96px;
  52. }
  53. #jtalkTabs li.selected .mtab,
  54. #jtalk .jt_tabs li.selected .mtab {
  55. background: url("../images/sprite.png") 0 -50px;
  56. }
  57. #jtalkTabs li.selected .rtab,
  58. #jtalk .jt_tabs li.selected .rtab {
  59. background: url("../images/sprite.png") -8px -96px;
  60. }
  61. #jtalkTabs li .close {
  62. margin-right: 5px;
  63. color: #aaa;
  64. }
  65. #jtalk {
  66. position: fixed;
  67. bottom: 0;
  68. left: 0;
  69. right: 0;
  70. height: 350px;
  71. z-index: 1000;
  72. }
  73. #jtalk, #jtalk button, #jtalk input, #jtalk select {
  74. font-family: Lucida Grande, Tahoma, sans-serif;
  75. font-size: 11px;
  76. }
  77. #jtalk #logo {
  78. position: absolute;
  79. top: 3px;
  80. left: 8px;
  81. width: 22px;
  82. height: 20px;
  83. background: url("../images/tinylogo.png") top left no-repeat;
  84. }
  85. #jtalk #jt_toolbar {
  86. height: 27px;
  87. background: url("../images/sprite.png") 0 0;
  88. }
  89. #jtalk #jt_toolbar input {
  90. margin-left: 50px;
  91. width: 250px;
  92. margin-top: 5px;
  93. }
  94. #jtalk #jt_toolbar #jt_close {
  95. position: absolute;
  96. right: 4px;
  97. top: 6px;
  98. width: 16px;
  99. height: 16px;
  100. background: url('../images/off.png');
  101. cursor: pointer;
  102. }
  103. #jtalk #jt_toolbar #jt_close:hover {
  104. background: url('../images/offHover.png');
  105. }
  106. #jtalk .ui-resizable-handle {
  107. background-color: transparent;
  108. top: 0;
  109. cursor: row-resize;
  110. height: 5px;
  111. left: 0;
  112. position: absolute;
  113. right: 0;
  114. width: auto !important;
  115. }
  116. .jtalkTool {
  117. width: 100%;
  118. color: #333;
  119. line-height: 1.3em;
  120. padding: 0;
  121. margin: 0;
  122. position: absolute;
  123. bottom: 0;
  124. left: 0;
  125. top: 49px;
  126. z-index: 1000;
  127. background: white;
  128. }
  129. .jtalkTool .jt_box {
  130. width: 100%;
  131. margin: 0;
  132. position: absolute;
  133. top: 0;
  134. bottom: 27px;
  135. }
  136. .jtalkTool .jt_buttons {
  137. position: absolute;
  138. bottom: 0;
  139. left: 0;
  140. right: 0;
  141. height: 27px;
  142. line-height: 27px;
  143. background: url("../images/sprite.png") 0 0 repeat;
  144. }
  145. .jtalkTool .jt_buttons .right {
  146. float: right;
  147. }
  148. .jtalkTool .important {
  149. font-weight: bold;
  150. }
  151. .jtalkTool button {
  152. border: 1px solid transparent;
  153. background: transparent;
  154. padding: 2px 4px;
  155. margin-left: 4px;
  156. cursor: pointer;
  157. }
  158. .jtalkTool button:hover {
  159. border-top: 1px solid #fff;
  160. border-left: 1px solid #fff;
  161. border-right: 1px solid #bbb;
  162. border-bottom: 1px solid #bbb;
  163. }
  164. .jtalkTool button:active {
  165. border-top: 1px solid #bbb;
  166. border-left: 1px solid #bbb;
  167. border-right: 1px solid #fff;
  168. border-bottom: 1px solid #fff;
  169. background: #ddd;
  170. }
  171. .jtalkTool select, #jtalk input {
  172. border-top: 1px solid #bbb;
  173. border-left: 1px solid #bbb;
  174. border-right: 1px solid #fff;
  175. border-bottom: 1px solid #fff;
  176. background: #fff;
  177. margin-top: 0;
  178. margin-bottom: 0;
  179. padding-top: 0;
  180. padding-bottom: 0;
  181. }
  182. .jtalkTool li {
  183. margin: 0;
  184. padding: 0;
  185. }
  186. .jtalkTool .source {
  187. height: 100%;
  188. }
  189. .jtalkTool textarea,
  190. .jtalkTool input {
  191. border: 0 none;
  192. font-family: Arial, Helvetica, sans;
  193. line-height: 1.3em;
  194. font-size: 12px;
  195. position: relative;
  196. padding: 0;
  197. }
  198. .jtalkTool .CodeMirror {
  199. border: 0 none;
  200. font-family: Arial, Helvetica, sans;
  201. font-size: 12px;
  202. line-height: 1.3em;
  203. height: 100%;
  204. background: white;
  205. }
  206. .jtalkTool .CodeMirror-scroll {
  207. height: 100%;
  208. }
  209. .talkTool .CodeMirror-scroll pre {
  210. font-family: Arial, Helvetica, sans;
  211. }
  212. .jtalkTool .jt_clear {
  213. clear: both;
  214. }
  215. .jtalkTool .jt_transcript,
  216. .jtalkTool .jt_workspace {
  217. width: 100%;
  218. height: 100%;
  219. }
  220. .jtalkTool .jt_packagesButtons {
  221. position: absolute;
  222. top: 149px;
  223. left: 0;
  224. z-index: 1;
  225. }
  226. .jtalkTool .jt_column {
  227. width: 25%;
  228. padding: 0;
  229. margin: 0;
  230. float: left;
  231. outline: 1px solid #aaa;
  232. border: 0 none;
  233. height: 150px;
  234. overflow-y: auto;
  235. background: #fff;
  236. color: #111;
  237. position: absolute;
  238. top: 0;
  239. }
  240. .jtalkTool .jt_column.classes {
  241. left: 25%
  242. }
  243. .jtalkTool .jt_column.classes ul {
  244. margin-left: 0;
  245. }
  246. .jtalkTool .jt_column.classes ul li {
  247. padding-left: 10px;
  248. margin-left: 0;
  249. }
  250. .jtalkTool .jt_column.protocols {
  251. left: 50%
  252. }
  253. .jtalkTool .jt_column.methods {
  254. left: 75%
  255. }
  256. .jtalkTool .jt_column li {
  257. list-style-type: none;
  258. padding-left: 5px;
  259. cursor: pointer;
  260. color: #111;
  261. font-weight: bold;
  262. }
  263. .jtalkTool .jt_column li.selected {
  264. background: #e3e3e3;
  265. color: #222;
  266. }
  267. .jtalkTool .jt_column li:hover {
  268. background: #08c;
  269. color: white;
  270. }
  271. #jtalk .jtalkTool .jt_tabs {
  272. top: 150px;
  273. position: absolute;
  274. }
  275. #jtalk .jtalkTool .jt_tabs.jt_browser {
  276. padding-left: 25%;
  277. }
  278. .jtalkTool .jt_sourceCode {
  279. position: absolute;
  280. top: 172px;
  281. bottom: 0;
  282. left: 0;
  283. right: 0;
  284. }
  285. .jtalkTool .jt_sourceCode textarea.source {
  286. width: 100%;
  287. height: 100%;
  288. }
  289. /* Debugger & inspector */
  290. .jtalkTool .jt_box .label {
  291. width: 100%;
  292. font-weight: bold;
  293. text-align: center;
  294. position: absolute;
  295. line-height: 1.5em;
  296. font-size: 16px;
  297. color: red;
  298. background: url("../images/sprite.png") top left repeat;
  299. height: 27px;
  300. }
  301. .jtalkTool .jt_box .jt_column.debugger {
  302. top: 178px;
  303. }
  304. .jtalkTool .jt_box .jt_column.debugger.contexts {
  305. top: 27px;
  306. width: 100%;
  307. }
  308. .jtalkTool .jt_sourceCode.debugger {
  309. width: 60%;
  310. top: 178px;
  311. }
  312. .jtalkTool .jt_box .jt_column.debugger.variables {
  313. width: 10%;
  314. left: 60%;
  315. bottom: 0;
  316. position: absolute;
  317. height: auto;
  318. }
  319. .jtalkTool .jt_box .jt_column.debugger.inspector {
  320. width: 30%;
  321. left: 70%;
  322. bottom: 0;
  323. position: absolute;
  324. height: auto;
  325. }
  326. .jtalkTool .jt_button.debugger.inspect {
  327. position: absolute;
  328. left: 60%;
  329. }
  330. .jtalkTool .jt_column.value {
  331. left: 25%;
  332. width: 75%;
  333. }
  334. .jtalkTool .jt_buttons.inspector {
  335. position: absolute;
  336. top: 150px;
  337. }
  338. /* ReferencesBrowser */
  339. .jtalkTool .jt_box .implementors {
  340. width: 100%
  341. }
  342. .jtalkTool .jt_box .jt_column.implementors,
  343. .jtalkTool .jt_box .jt_column.senders,
  344. .jtalkTool .jt_box .jt_column.referenced_classes {
  345. top: 20px;
  346. height: auto;
  347. bottom: 0;
  348. width: 33.333%;
  349. }
  350. .jtalkTool .jt_box .jt_column.senders {
  351. left: 33.333%
  352. }
  353. .jtalkTool .jt_box .jt_column.referenced_classes {
  354. left: 66.67%
  355. }
  356. .jtalkTool .jt_box .jt_column.implementors .column_label,
  357. .jtalkTool .jt_box .jt_column.senders .column_label,
  358. .jtalkTool .jt_box .jt_column.referenced_classes .column_label {
  359. background: #dbdbdb
  360. }
  361. .jtalkTool .jt_box .jt_column.implementors .column_label:hover,
  362. .jtalkTool .jt_box .jt_column.senders .column_label:hover,
  363. .jtalkTool .jt_box .jt_column.referenced_classes .column_label:hover {
  364. font-weight: bold;
  365. color: #000;
  366. cursor: default
  367. }
  368. .jtalkTool .classes .commented {
  369. color: #33337F;
  370. }
  371. /* SUnit TestRunner */
  372. .jtalkTool .jt_column.sunit.packages,
  373. .jtalkTool .jt_column.sunit.classes {
  374. height: 100%
  375. }
  376. .jtalkTool .jt_column.sunit.classes li.all,
  377. .jtalkTool .jt_column.sunit.categories li.all {
  378. background: #e3e3e3;
  379. font-weight: bold
  380. }
  381. .jtalkTool .jt_column.sunit.classes li.all:hover ,
  382. .jtalkTool .jt_column.sunit.categories li.all:hover {
  383. background: #0088CC;
  384. font-weight: bold
  385. }
  386. .jtalkTool .sunit.status {
  387. position: absolute;
  388. left: 50%;
  389. width: 50%;
  390. outline: 1px solid #aaa;
  391. background: white;
  392. height: 40px
  393. }
  394. .jtalkTool .sunit.status.success {
  395. background: #43d443;
  396. }
  397. .jtalkTool .sunit.status.failure {
  398. background: #ecd443;
  399. }
  400. .jtalkTool .sunit.status.error {
  401. background: #e56f3b;
  402. }
  403. .jtalkTool .progress_bar {
  404. position: absolute;
  405. left: 50%;
  406. width: 50%;
  407. top: 40px;
  408. background: white;
  409. outline: 1px solid #aaa;
  410. min-height: 20px
  411. }
  412. .jtalkTool .progress_bar div {
  413. background: #0088CC;
  414. min-height: 20px;
  415. }
  416. .jtalkTool .jt_column.results.sunit {
  417. left: 50%;
  418. height: auto;
  419. width: 50%;
  420. top: 62px;
  421. bottom: 0;
  422. }
  423. .jtalkTool .jt_column.sunit.results .errors {
  424. color: red;
  425. }
  426. /*.jtalkTool .jt_column.sunit.results ul {padding: 0; margin: 0}*/