helios.css 25 KB

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