helios.css 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942
  1. .clearfix:after {
  2. content: ".";
  3. display: block;
  4. clear: both;
  5. visibility: hidden;
  6. line-height: 0;
  7. height: 0;
  8. }
  9. .clearfix {
  10. display: inline-block;
  11. }
  12. html[xmlns] .clearfix {
  13. display: block;
  14. }
  15. * html .clearfix {
  16. height: 1%;
  17. }
  18. body.navigation .CodeMirror pre {
  19. cursor: pointer !important;
  20. }
  21. body[id="helios"] {
  22. font-size: 11px;
  23. font-family: "Bitstream Vera Sans", "Lucida Grande", "Segoe UI", helvetica, arial, sans-serif;
  24. background: #eeeeee url(squared_metal.png) repeat;
  25. }
  26. body[id="helios"] a {
  27. cursor: pointer;
  28. }
  29. body[id="helios"] i {
  30. opacity: 1;
  31. }
  32. body[id="helios"] [class^="icon-"],
  33. body[id="helios"] [class*=" icon-"] {
  34. margin-top: 0;
  35. }
  36. body[id="helios"] .CodeMirror {
  37. position: absolute;
  38. height: 100%;
  39. width: 100%;
  40. font-family: Consolas, "Liberation Mono", Courier, monospace;
  41. line-height: 16px;
  42. font-size: 13px;
  43. }
  44. body[id="helios"] .CodeMirror .CodeMirror-gutter.stops {
  45. width: 20px;
  46. }
  47. body[id="helios"] .CodeMirror .highlighted.CodeMirror-linebackground {
  48. background-color: #ffffaa;
  49. }
  50. body[id="helios"] .CodeMirror .CodeMirror-gutter-elt .stop {
  51. width: 16px;
  52. height: 16px;
  53. background: url('arrowRight.png');
  54. margin-left: 2px;
  55. }
  56. body[id="helios"] .CodeMirror-hints {
  57. border-radius: 0;
  58. font-family: "Lucida Grande", "Segoe UI", helvetica, arial, sans-serif;
  59. font-size: 11px;
  60. line-height: 1em;
  61. padding: 0;
  62. max-height: 120px;
  63. }
  64. body[id="helios"] .CodeMirror-hint {
  65. border-radius: 0;
  66. padding: 0 10px;
  67. }
  68. body[id="helios"] .state {
  69. position: absolute;
  70. right: 15px;
  71. top: 10px;
  72. width: 16px;
  73. height: 16px;
  74. }
  75. body[id="helios"] .state.modified {
  76. background: transparent url('modified.png') 50% 50% no-repeat;
  77. }
  78. body[id="helios"] .editor {
  79. position: absolute;
  80. top: 0;
  81. bottom: 23px;
  82. left: 0;
  83. right: 0;
  84. }
  85. body[id="helios"] .hl_widget:focus {
  86. outline: 0 none;
  87. }
  88. body[id="helios"] .buttons_bar {
  89. position: absolute;
  90. bottom: 0;
  91. right: 0;
  92. left: 0;
  93. z-index: 2;
  94. padding: 0px 25px;
  95. height: 21px;
  96. line-height: 18px;
  97. border-top: 1px solid #999;
  98. text-align: right;
  99. }
  100. body[id="helios"] .buttons_bar .button {
  101. height: 17px;
  102. font-size: 12px;
  103. min-width: 0;
  104. }
  105. body[id="helios"] .btn,
  106. body[id="helios"] .btn-group > .btn,
  107. body[id="helios"] .btn-group > .dropdown-menu {
  108. padding: 2px 8px;
  109. }
  110. body[id="helios"] .navbar-fixed-top {
  111. font-size: 11px;
  112. line-height: 16px;
  113. }
  114. body[id="helios"] .navbar-fixed-top ul {
  115. width: 100%;
  116. }
  117. body[id="helios"] .navbar-fixed-top a span,
  118. body[id="helios"] .dialog .nav a span {
  119. padding: 1px;
  120. padding-left: 18px;
  121. background-position: center left;
  122. background-repeat: no-repeat;
  123. background-position: 0px center;
  124. height: 22px;
  125. }
  126. body[id="helios"] .navbar-fixed-top i.close {
  127. width: 14px;
  128. height: 16px;
  129. margin-left: 4px;
  130. background-image: url('close.gif');
  131. margin-right: 0;
  132. background-position: center left;
  133. margin-top: 4px;
  134. }
  135. body[id="helios"] .navbar-fixed-top a span.references,
  136. body[id="helios"] .dialog .nav a span.references {
  137. background-image: url('references.png');
  138. }
  139. body[id="helios"] .navbar-fixed-top a span.browser,
  140. body[id="helios"] .dialog .nav a span.browser {
  141. background-image: url('browser.png');
  142. }
  143. body[id="helios"] .navbar-fixed-top a span.sunit,
  144. body[id="helios"] .dialog .nav a span.sunit {
  145. background-image: url('test.png');
  146. }
  147. body[id="helios"] .navbar-fixed-top a span.workspace,
  148. body[id="helios"] .dialog .nav a span.workspace {
  149. background-image: url('workspace.png');
  150. }
  151. body[id="helios"] .navbar-fixed-top a span.debugger,
  152. body[id="helios"] .dialog .nav a span.debugger {
  153. background-image: url('debugger.png');
  154. }
  155. body[id="helios"] .navbar-fixed-top a span.inspector,
  156. body[id="helios"] .dialog .nav a span.inspector {
  157. background-image: url('inspector.png');
  158. }
  159. body[id="helios"] .navbar-fixed-top .navbar-inner {
  160. min-height: 24px;
  161. border-bottom: 1px solid #666;
  162. box-shadow: inset 0px 2px 2px #aaa;
  163. background: #bababa;
  164. }
  165. body[id="helios"] .navbar .nav > li {
  166. line-height: 16px;
  167. text-align: center;
  168. max-width: 300px;
  169. }
  170. body[id="helios"] .new_tab {
  171. width: 20px;
  172. height: 24px;
  173. line-height: 24px;
  174. border-right: 0 none;
  175. position: absolute;
  176. top: 0px;
  177. right: 0px;
  178. z-index: 2000;
  179. }
  180. body[id="helios"] .new_tab a {
  181. color: #444;
  182. }
  183. body[id="helios"] .new_tab a:hover {
  184. text-decoration: none;
  185. }
  186. body[id="helios"] .new_tab .dropdown-menu {
  187. left: auto;
  188. float: right;
  189. right: 0;
  190. }
  191. body[id="helios"] .dropdown-menu {
  192. min-width: 0;
  193. text-align: left;
  194. }
  195. body[id="helios"] .navbar .nav > li > a {
  196. line-height: 22px;
  197. padding: 0px 8px;
  198. font-size: 11px;
  199. border-right: 1px solid #777;
  200. text-shadow: #ddd 0px 1px 0px;
  201. color: #222;
  202. }
  203. body[id="helios"] .navbar .nav > li > a span {
  204. display: block;
  205. overflow: hidden;
  206. }
  207. body[id="helios"] .nav > li > a:hover {
  208. background: transparent;
  209. }
  210. body[id="helios"] .navbar .nav > li > a:hover {
  211. color: #333;
  212. background-image: linear-gradient(top, #cfcfcf, #c0c0c0);
  213. background-image: -webkit-linear-gradient(top, #cfcfcf, #c0c0c0);
  214. background-image: -moz-linear-gradient(top, #cfcfcf, #c0c0c0);
  215. background-image: -o-linear-gradient(top, #cfcfcf, #c0c0c0);
  216. text-shadow: 0 1px 0 #ddd;
  217. box-shadow: 0 0 0;
  218. }
  219. body[id="helios"] .navbar .nav > .active > a,
  220. body[id="helios"] .navbar .nav > .active > a:hover,
  221. body[id="helios"] .navbar .nav > .active > a:focus,
  222. body[id="helios"] .navbar .nav .ui-sortable-helper a {
  223. color: #444;
  224. background-image: linear-gradient(top, #dfdfdf, #d0d0d0);
  225. background-image: -webkit-linear-gradient(top, #dfdfdf, #d0d0d0);
  226. background-image: -moz-linear-gradient(top, #dfdfdf, #d0d0d0);
  227. background-image: -o-linear-gradient(top, #dfdfdf, #d0d0d0);
  228. text-shadow: 0 1px 0 #ddd;
  229. box-shadow: 0 0 0;
  230. }
  231. body[id="helios"] .navbar .nav .ui-sortable-helper a {
  232. border-left: 1px solid #777;
  233. }
  234. body[id="helios"] .navbar-fixed-top i {
  235. opacity: 0.4;
  236. margin-right: 5px;
  237. height: 12px;
  238. margin-top: 0;
  239. }
  240. body[id="helios"] .navbar-fixed-top .active i {
  241. opacity: 0.6;
  242. }
  243. body[id="helios"] .nav-pills.nav-stacked > li > a {
  244. border-radius: 0;
  245. -webkit-border-radius: 0;
  246. -moz-border-radius: 0;
  247. padding: 2px 2px 1px 4px;
  248. margin: 0;
  249. font-size: 11px;
  250. color: #111;
  251. white-space: nowrap;
  252. }
  253. body[id="helios"] [class^="icon-"],
  254. body[id="helios"] [class*=" icon-"] {
  255. margin-right: 2px;
  256. }
  257. body[id="helios"] .dropdown-menu {
  258. border-radius: 0;
  259. padding: 0;
  260. margin: 3px;
  261. }
  262. body[id="helios"] .nav-pills > .active > a {
  263. background-color: #ddd;
  264. color: #fff;
  265. text-shadow: 0 0 0;
  266. }
  267. body[id="helios"] .focused .nav-pills {
  268. background-color: #f3f7fb;
  269. }
  270. body[id="helios"] .focused .nav-pills > .active > a,
  271. body[id="helios"] .nav-pills > .active > a:hover,
  272. body[id="helios"] .dropdown-menu li > a:hover,
  273. body[id="helios"] .dropdown-menu li > a:focus,
  274. body[id="helios"] .dropdown-submenu:hover > a,
  275. body[id="helios"] .dropdown-menu .active > a,
  276. body[id="helios"] .dropdown-menu .active > a:hover,
  277. body[id="helios"] .CodeMirror-hint-active {
  278. background: rgba(95, 159, 228, 0.62);
  279. color: #fff;
  280. text-shadow: 0 0 0;
  281. }
  282. body[id="helios"] .welcome {
  283. position: fixed;
  284. top: 0;
  285. bottom: 0;
  286. left: 50%;
  287. margin-left: -170px;
  288. width: 340px;
  289. margin-top: 60px;
  290. text-shadow: 0 1px 0 #fafafa;
  291. color: #666;
  292. font-size: 14px;
  293. }
  294. body[id="helios"] .welcome h2 {
  295. text-align: center;
  296. color: #666;
  297. }
  298. body[id="helios"] .welcome button {
  299. background: #eee;
  300. margin: 10px;
  301. padding: 20px;
  302. height: auto;
  303. width: 150px;
  304. }
  305. body[id="helios"] .sunit.status.success {
  306. background: #43d443;
  307. }
  308. body[id="helios"] .sunit.status.failure {
  309. background: #ecd443;
  310. }
  311. body[id="helios"] .sunit.status.error {
  312. background: #e56f3b;
  313. }
  314. body[id="helios"] .tool_container {
  315. position: absolute;
  316. top: 23px;
  317. bottom: 0;
  318. left: 0;
  319. right: 0;
  320. }
  321. body[id="helios"] .transcript textarea {
  322. width: 100%;
  323. height: 100%;
  324. margin: 0;
  325. padding: 0;
  326. border: 0;
  327. }
  328. body[id="helios"] .tool_container .panes {
  329. position: relative;
  330. height: 100%;
  331. width: 100%;
  332. overflow: hidden;
  333. }
  334. body[id="helios"] .tool_container .panes .pane {
  335. position: absolute;
  336. overflow: auto;
  337. top: 0;
  338. left: 0;
  339. right: 0;
  340. bottom: 0;
  341. background: #fefefe;
  342. }
  343. body[id="helios"] .tool_container .multi_pane {
  344. position: relative;
  345. height: 100%;
  346. width: auto;
  347. overflow-x: auto;
  348. }
  349. body[id="helios"] .tool_container .multi_pane .pane {
  350. height: 100%;
  351. max-width: 300px;
  352. border-right: 1px solid #888;
  353. }
  354. body[id="helios"] .tool_container .panes .pane > div {
  355. height: 100%;
  356. position: relative;
  357. }
  358. body[id="helios"] .tool_container .panes.horizontal > .pane {
  359. min-height: 50px;
  360. }
  361. body[id="helios"] .tool_container .panes.horizontal > .pane {
  362. top: 50%;
  363. }
  364. body[id="helios"] .tool_container .panes.horizontal > .pane:first-child {
  365. top: 0;
  366. bottom: 50%;
  367. }
  368. body[id="helios"] .tool_container .panes.vertical > .pane {
  369. left: 50%;
  370. }
  371. body[id="helios"] .tool_container .panes.vertical > .pane:first-child {
  372. left: 0;
  373. right: 50%;
  374. }
  375. body[id="helios"] .tool_container .splitter {
  376. position: absolute;
  377. border-width: 0;
  378. z-index: 10;
  379. }
  380. body[id="helios"] .tool_container .splitter.vertical {
  381. width: 5px;
  382. left: 50%;
  383. margin-left: -1px;
  384. border-left: 1px solid #888;
  385. height: 100%;
  386. float: left;
  387. cursor: ew-resize;
  388. }
  389. body[id="helios"] .tool_container .splitter.horizontal {
  390. top: 50%;
  391. height: 5px;
  392. margin-top: -1px;
  393. width: 100%;
  394. border-top: 1px solid #888;
  395. cursor: ns-resize;
  396. }
  397. body[id="helios"] .tool_container .panes .pane .nav-pills {
  398. position: absolute;
  399. overflow-y: auto;
  400. top: 17px;
  401. bottom: 17px;
  402. width: 100%;
  403. margin: 0;
  404. }
  405. body[id="helios"] .tool_container .pane .nav-pills i {
  406. display: inline-block;
  407. width: 16px;
  408. height: 16px;
  409. margin-right: 4px;
  410. background-image: none;
  411. background-position: top left;
  412. line-height: 14px;
  413. vertical-align: text-top;
  414. }
  415. body[id="helios"] .tool_container .pane .nav-pills i.announcement {
  416. background-image: url('announcement.png');
  417. }
  418. body[id="helios"] .tool_container .pane .nav-pills i.class {
  419. background-image: url('class.png');
  420. }
  421. body[id="helios"] .tool_container .pane .nav-pills i.collection {
  422. background-image: url('collection.png');
  423. }
  424. body[id="helios"] .tool_container .pane .nav-pills i.test {
  425. background-image: url('test.png');
  426. }
  427. body[id="helios"] .tool_container .pane .nav-pills i.exception {
  428. background-image: url('exception.png');
  429. }
  430. body[id="helios"] .tool_container .pane .nav-pills i.widget {
  431. background-image: url('widget.png');
  432. }
  433. body[id="helios"] .tool_container .pane .nav-pills i.magnitude {
  434. background-image: url('magnitude.png');
  435. }
  436. body[id="helios"] .tool_container .pane .nav-pills i.package {
  437. background-image: url('package.png');
  438. }
  439. body[id="helios"] .tool_container .pane .nav-pills i.package_dirty {
  440. background-image: url('package-dirty.png');
  441. }
  442. body[id="helios"] .tool_container .pane .nav-pills i.private {
  443. background-image: url('private.png');
  444. }
  445. body[id="helios"] .tool_container .pane .nav-pills i.extension {
  446. background-image: url('extension.png');
  447. }
  448. body[id="helios"] .tool_container .pane .nav-pills i.initialization {
  449. background-image: url('initialization.png');
  450. }
  451. body[id="helios"] .tool_container .pane .nav-pills i.package {
  452. background-image: url('package.png');
  453. }
  454. body[id="helios"] .tool_container .pane .nav-pills i.override {
  455. background-image: url('override.png ');
  456. }
  457. body[id="helios"] .tool_container .pane .nav-pills i.overridden {
  458. background-image: url('overridden.png');
  459. }
  460. body[id="helios"] .tool_container .pane .nav-pills i.override-overridden {
  461. background-image: url('override-overridden.png');
  462. }
  463. body[id="helios"] .tool_container .pane .nav-pills i.warning {
  464. background-image: url('warning.gif');
  465. }
  466. body[id="helios"] .tool_container .pane .nav-pills i.uncommented {
  467. background-image: url('uncommented.png');
  468. }
  469. body[id="helios"] .tool_container .list-label {
  470. font-size: 11px;
  471. border-radius: 0;
  472. border-bottom: 1px solid #999;
  473. border-top: 1px solid #eee;
  474. background-color: #eee;
  475. background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
  476. background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
  477. background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  478. background-image: linear-gradient(top, #eeeeee, #dddddd);
  479. color: #444;
  480. font-weight: bold;
  481. text-shadow: 0 0 0;
  482. padding-left: 4px;
  483. line-height: 14px;
  484. height: 15px;
  485. text-shadow: 0 1px 0 #eee;
  486. }
  487. body[id="helios"] .tool_container .list-label .btn-group.cog {
  488. position: absolute;
  489. top: 0;
  490. right: 0;
  491. padding: 0;
  492. margin: 0;
  493. }
  494. body[id="helios"] .tool_container .list-label .btn-group.open .dropdown-toggle {
  495. box-shadow: 0 0 0;
  496. border: 0;
  497. }
  498. body[id="helios"] .tool_container .list-label .btn-group > .dropdown-menu {
  499. padding: 0;
  500. font-size: 11px;
  501. }
  502. body[id="helios"] .tool_container .list-label .btn-group.cog i {
  503. margin-top: 1px;
  504. }
  505. body[id="helios"] .tool_container .list-label .cog .btn.dropdown-toggle {
  506. padding: 0;
  507. margin: 0;
  508. line-height: 12px;
  509. border: 0;
  510. background: transparent;
  511. }
  512. body[id="helios"] .tool_container .panes .pane .pane_actions {
  513. position: absolute;
  514. overflow: hidden;
  515. width: 100%;
  516. height: 16px;
  517. bottom: 0;
  518. padding: 0;
  519. margin: 0;
  520. }
  521. body[id="helios"] .tool_container .pane_actions,
  522. body[id="helios"] .tool_container .buttons_bar {
  523. background: #dadada;
  524. border-top: 1px solid #666;
  525. background-image: -webkit-linear-gradient(top, #dadada, #bdbdbd);
  526. background-image: -moz-linear-gradient(top, #dadada, #bdbdbd);
  527. background-image: -o-linear-gradient(top, #dadada, #bdbdbd);
  528. background-image: linear-gradient(top, #dadada, #bdbdbd);
  529. }
  530. body[id="helios"] .tool_container .panes .pane .pane_actions .info {
  531. padding: 10px 5px 5px;
  532. font-weight: bold;
  533. color: #666;
  534. line-height: 20px;
  535. }
  536. body[id="helios"] .tool_container .panes .pane .pane_actions .btn-group {
  537. display: inline;
  538. margin-left: 5px;
  539. }
  540. body[id="helios"] .tool_container .panes .pane .pane_actions label {
  541. display: inline-block;
  542. padding-left: 30px;
  543. font-size: 11px;
  544. line-height: 16px;
  545. vertical-align: top;
  546. text-shadow: #ddd 0px 1px 0px;
  547. color: #222;
  548. }
  549. body[id="helios"] .tool_container .panes .pane .pane_actions label input {
  550. float: none;
  551. vertical-align: top;
  552. margin-top: 2px;
  553. margin-right: 5px;
  554. }
  555. body[id="helios"] .tool_container .panes .pane .pane_actions .btn {
  556. background: transparent;
  557. border: 0;
  558. font-size: 11px;
  559. line-height: 16px;
  560. padding: 0 5px;
  561. margin: 0;
  562. border-radius: 0;
  563. box-shadow: 0 0 0;
  564. vertical-align: top;
  565. /* min-width: 50px; */
  566. }
  567. body[id="helios"] .tool_container .panes .pane .pane_actions .btn:hover {
  568. background-color: #bbb;
  569. }
  570. body[id="helios"] .tool_container .panes .pane .pane_actions .btn-group .btn:hover {
  571. background-color: transparent;
  572. }
  573. body[id="helios"] .tool_container .panes .pane .pane_actions .btn-group .btn.active {
  574. text-shadow: #ddd 0px 1px 0px;
  575. color: #222;
  576. background: #bbb;
  577. background-image: linear-gradient(left, #777777 0%, #bababa 2px, transparent 2px), linear-gradient(right, #777777 0%, #bababa 2px, transparent 2px);
  578. background-image: -webkit-linear-gradient(left, #777777 0%, #bababa 2px, transparent 2px), -webkit-linear-gradient(right, #777777 0%, #bababa 2px, transparent 2px);
  579. background-image: -moz-linear-gradient(left, #777777 0%, #bababa 2px, transparent 2px), -moz-linear-gradient(right, #777777 0%, #bababa 2px, transparent 2px);
  580. background-image: -o-linear-gradient(left, #777777 0%, #bababa 2px, transparent 2px), -o-linear-gradient(right, #777777 0%, #bababa 2px, transparent 2px);
  581. }
  582. body[id="helios"] .tool_container .panes .pane .class_side .nav-pills {
  583. font-weight: bold;
  584. background: #ffffdd;
  585. }
  586. body[id="helios"] .key_helper {
  587. z-index: 2001;
  588. position: fixed;
  589. top: 120px;
  590. left: 50%;
  591. width: 400px;
  592. max-height: 300px;
  593. margin-left: -200px;
  594. background: white;
  595. box-shadow: 0 0 6px #aaa;
  596. border: 1px solid #aaa;
  597. font-size: 11px;
  598. transition: all .5s;
  599. -webkit-transition: all .5s;
  600. -moz-transition: all .5s;
  601. -o-transition: all .5s;
  602. -ms-transition: all .5s;
  603. }
  604. body[id="helios"] .key_helper .command {
  605. padding: 0;
  606. display: inline-block;
  607. width: 50%;
  608. }
  609. body[id="helios"] .key_helper .command strong {
  610. display: inline-block;
  611. min-width: 1.4em;
  612. text-align: left;
  613. }
  614. body[id="helios"] .key_helper #binding-helper-main {
  615. display: block;
  616. padding: 5px;
  617. background: #eee;
  618. }
  619. body[id="helios"] .key_helper .label {
  620. padding: 1px 4px;
  621. font-family: Menlo, Monaco, "Lucida Console", Courier, monospace;
  622. background: transparent;
  623. color: #0E4561;
  624. text-shadow: none;
  625. border: 0 none;
  626. }
  627. body[id="helios"] .key_helper .action {
  628. padding: 0 0.5em 0 5px;
  629. color: inherit;
  630. font-weight: bold;
  631. }
  632. body[id="helios"] .key_helper .selected {
  633. background-image: linear-gradient(top, #cccccc, #bbbbbb);
  634. background-image: -moz-linear-gradient(top, #cccccc, #bbbbbb);
  635. background-image: -o-linear-gradient(top, #cccccc, #bbbbbb);
  636. background-image: -webkit-linear-gradient(top, #cccccc, #bbbbbb);
  637. height: 28px;
  638. padding: 0 8px;
  639. font-weight: bold;
  640. font-size: 18px;
  641. line-height: 28px;
  642. text-shadow: 0 1px 0 #fff;
  643. display: block;
  644. border-bottom: 1px solid #aaa;
  645. }
  646. body[id="helios"] .key_helper .close {
  647. font-size: 14px;
  648. line-height: 28px;
  649. opacity: 0.6;
  650. position: absolute;
  651. top: 0;
  652. right: 4px;
  653. }
  654. body[id="helios"] .key_helper .close:hover {
  655. opacity: 0.8;
  656. }
  657. body[id="helios"] .key_helper input {
  658. outline: none;
  659. font-size: 11px;
  660. padding: 2px 8px;
  661. background: #fff;
  662. border: 1px solid #a1a1a1;
  663. border-radius: 12px;
  664. box-shadow: inset 0 0px 2px 0px #aaa;
  665. margin: 2px 4px;
  666. line-height: 1em;
  667. }
  668. body[id="helios"] .key_helper .error .help-inline,
  669. body[id="helios"] .key_helper .error input {
  670. color: #B91010;
  671. font-weight: bold;
  672. }
  673. body[id="helios"] .key_helper #cog-helper {
  674. position: fixed;
  675. bottom: 2px;
  676. right: 2px;
  677. z-index: 1000;
  678. opacity: 0.6;
  679. transition: all .5s;
  680. -webkit-transition: all .5s;
  681. -moz-transition: all .5s;
  682. -o-transition: all .5s;
  683. -ms-transition: all .5s;
  684. }
  685. body[id="helios"] .key_helper #cog-helper:hover {
  686. opacity: 1;
  687. }
  688. body[id="helios"] #helper {
  689. z-index: 300;
  690. top: 50%;
  691. position: absolute;
  692. left: 50%;
  693. margin-left: -220px;
  694. margin-top: -35px;
  695. width: 400px;
  696. text-align: center;
  697. color: #ddd;
  698. font-size: 18px;
  699. font-weight: bold;
  700. text-shadow: 0 -1px 0 #111111;
  701. padding: 20px;
  702. background: rgba(0, 0, 0, 0.6);
  703. border-radius: 40px;
  704. }
  705. body[id="helios"] #overlay {
  706. z-index: 2000;
  707. background: transparent;
  708. position: fixed;
  709. top: 0;
  710. left: 0;
  711. right: 0;
  712. bottom: 0;
  713. }
  714. body[id="helios"] .growl {
  715. position: fixed;
  716. top: 10px;
  717. right: 10px;
  718. margin: 0;
  719. z-index: 2001;
  720. width: 200px;
  721. height: auto;
  722. padding: 15px;
  723. background-image: -webkit-linear-gradient(#ffffff, #ebebeb);
  724. background-image: -moz-linear-gradient(#ffffff, #ebebeb);
  725. background-image: -o-linear-gradient(#ffffff, #ebebeb);
  726. background-image: linear-gradient(#ffffff, #ebebeb);
  727. border: 1px solid #aaa;
  728. border-radius: 8px;
  729. box-shadow: 0 0 3px #ccc;
  730. font-weight: bold;
  731. text-shadow: 0px 2px 1px #fff;
  732. }
  733. body[id="helios"] .confirmation,
  734. body[id="helios"] .dialog {
  735. z-index: 2001;
  736. background: rgba(243, 243, 243, 0.9);
  737. background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 5px, transparent 6px);
  738. background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 5px, transparent 6px);
  739. background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 5px, transparent 6px);
  740. background-image: linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 5px, transparent 6px);
  741. padding: 20px;
  742. width: 250px;
  743. position: fixed;
  744. top: -500px;
  745. left: 50%;
  746. margin-left: -135px;
  747. box-shadow: 0 0 6px #333;
  748. transition: top .2s;
  749. -webkit-transition: top .2s;
  750. -moz-transition: top .2s;
  751. -o-transition: top .2s;
  752. }
  753. body[id="helios"] .confirmation .head,
  754. body[id="helios"] .dialog .head {
  755. display: block;
  756. }
  757. body[id="helios"] .confirmation .hl_widget .form-actions,
  758. body[id="helios"] .dialog .hl_widget .form-actions {
  759. padding: 0;
  760. border: 0;
  761. }
  762. body[id="helios"] .confirmation .nav,
  763. body[id="helios"] .dialog .nav {
  764. border: 1px solid #999;
  765. }
  766. body[id="helios"] .confirmation .nav span,
  767. body[id="helios"] .dialog .nav span {
  768. font-size: 11px;
  769. font-weight: normal;
  770. }
  771. body[id="helios"] .confirmation .title,
  772. body[id="helios"] .dialog .title {
  773. font-size: 16px;
  774. margin-bottom: 15px;
  775. }
  776. body[id="helios"] .confirmation.large,
  777. body[id="helios"] .dialog.large {
  778. width: 400px;
  779. margin-left: -220px;
  780. }
  781. body[id="helios"] .confirmation.large textarea,
  782. body[id="helios"] .dialog.large textarea {
  783. width: 385px;
  784. height: 200px;
  785. }
  786. body[id="helios"] .confirmation textarea,
  787. body[id="helios"] .dialog textarea {
  788. display: block;
  789. width: 235px;
  790. }
  791. body[id="helios"] .confirmation input[type="text"],
  792. body[id="helios"] .dialog input[type="text"] {
  793. margin: 5px 0;
  794. width: 390px;
  795. }
  796. body[id="helios"] .confirmation .progress,
  797. body[id="helios"] .dialog .progress {
  798. height: 5px;
  799. }
  800. body[id="helios"] .confirmation .progress .bar,
  801. body[id="helios"] .dialog .progress .bar {
  802. background-color: #e9eaf5;
  803. background-image: -webkit-linear-gradient(top, #b1bdd5, #8999b8);
  804. background-image: -moz-linear-gradient(top, #b1bdd5, #8999b8);
  805. background-image: -o-linear-gradient(top, #b1bdd5, #8999b8);
  806. background-image: linear-gradient(top, #b1bdd5, #8999b8);
  807. }
  808. body[id="helios"] .confirmation span,
  809. body[id="helios"] .dialog span {
  810. font-size: 13px;
  811. font-weight: bold;
  812. }
  813. body[id="helios"] .confirmation .buttons,
  814. body[id="helios"] .dialog .buttons {
  815. text-align: right;
  816. margin-top: 20px;
  817. }
  818. body[id="helios"] .confirmation.active,
  819. body[id="helios"] .dialog.active {
  820. top: 0;
  821. }
  822. body[id="helios"] .button {
  823. border-radius: 3px !important;
  824. background: #ccc;
  825. border: 1px solid #9B9B9B;
  826. height: 20px;
  827. border-radius: 5px;
  828. min-width: 68px;
  829. padding: 0 10px;
  830. text-align: center;
  831. margin: 0;
  832. margin-left: 10px;
  833. background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.09) 0%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.04) 50.5%, rgba(0, 0, 0, 0.04) 100%) #ffffff;
  834. background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.09) 0%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.04) 50.5%, rgba(0, 0, 0, 0.04) 100%) #ffffff;
  835. background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.09) 0%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.04) 50.5%, rgba(0, 0, 0, 0.04) 100%) #ffffff;
  836. background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.09) 0%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.04) 50.5%, rgba(0, 0, 0, 0.04) 100%) #ffffff;
  837. background: linear-gradient(bottom, rgba(0, 0, 0, 0.09) 0%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.04) 50.5%, rgba(0, 0, 0, 0.04) 100%) #ffffff;
  838. font: 13px "Lucida Grande", Lucida, Verdana, sans-serif;
  839. }
  840. body[id="helios"] .button.default {
  841. border-top: 1px solid #535273;
  842. border: 1px solid #4F4D67;
  843. border-bottom: 1px solid #4B4B58;
  844. background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.3) 50.5%, rgba(255, 255, 255, 0.45) 95%, rgba(255, 255, 255, 0.8) 100%) #b1bdd5;
  845. background: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.3) 50.5%, rgba(255, 255, 255, 0.45) 95%, rgba(255, 255, 255, 0.8) 100%) #b1bdd5;
  846. background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.3) 50.5%, rgba(255, 255, 255, 0.45) 95%, rgba(255, 255, 255, 0.8) 100%) #b1bdd5;
  847. background: -ms-linear-gradient(bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.3) 50.5%, rgba(255, 255, 255, 0.45) 95%, rgba(255, 255, 255, 0.8) 100%) #b1bdd5;
  848. background: linear-gradient(bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.3) 50.5%, rgba(255, 255, 255, 0.45) 95%, rgba(255, 255, 255, 0.8) 100%) #b1bdd5;
  849. -moz-box-shadow: 0 0 3px rgba(69, 113, 184, 0.8);
  850. -webkit-box-shadow: 0 0 5px rgba(69, 113, 184, 0.44);
  851. box-shadow: 0 0 5px rgba(69, 113, 184, 0.44);
  852. }
  853. body[id="helios"] .button:hover {
  854. cursor: pointer;
  855. border: 1px solid rgba(0, 0, 0, 0.6);
  856. }
  857. body[id="helios"] .button:active {
  858. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
  859. -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
  860. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
  861. }
  862. body[id="helios"] .button:focus {
  863. outline: 0;
  864. border-color: #08C;
  865. box-shadow: 0 0 5px #08C;
  866. }
  867. body[id="helios"] .doc {
  868. background: white;
  869. }
  870. body[id="helios"] .doc code .doc pre,
  871. body[id="helios"] .doc p,
  872. body[id="helios"] .doc div {
  873. font-size: 13px;
  874. }
  875. body[id="helios"] .doc code {
  876. padding: 1px 4px;
  877. }
  878. body[id="helios"] .doc .head {
  879. background: #666;
  880. padding: 10px;
  881. font-size: 22px;
  882. color: white;
  883. }
  884. body[id="helios"] .focused .doc .head {
  885. background: #08c;
  886. }
  887. body[id="helios"] .doc .button {
  888. float: right;
  889. }
  890. body[id="helios"] .doc .markdown,
  891. body[id="helios"] .doc .inheritance {
  892. padding: 10px;
  893. }
  894. body[id="helios"] .doc h1 {
  895. font-size: 22px;
  896. margin: 0 10px;
  897. border-bottom: 1px solid #666;
  898. }
  899. body[id="helios"] .doc h2 {
  900. font-size: 16px;
  901. }
  902. body[id="helios"] .transcript_container .list-label {
  903. height: 16px;
  904. position: absolute;
  905. top: 0;
  906. right: 0;
  907. left: 0;
  908. }
  909. body[id="helios"] .transcript {
  910. position: absolute;
  911. top: 17px;
  912. bottom: 0;
  913. left: 0;
  914. right: 0;
  915. }
  916. body[id="helios"] .transcript textarea {
  917. width: 100%;
  918. height: 100%;
  919. margin: 0;
  920. padding: 0;
  921. border: 0;
  922. }
  923. body[id="helios"] .hl_debugger .tool_container {
  924. top: 53px;
  925. }
  926. body[id="helios"] .hl_debugger .head {
  927. position: absolute;
  928. top: 23px;
  929. width: 100%;
  930. background: #0088cc url(debugger.png) 10px center no-repeat;
  931. border-bottom: 1px solid white;
  932. }
  933. body[id="helios"] .hl_debugger .head h2 {
  934. font-size: 14px;
  935. line-height: 30px;
  936. padding: 0 30px;
  937. margin: 0;
  938. color: white;
  939. }
  940. body[id="helios"] .progress {
  941. border-radius: 0;
  942. }