helios.css 24 KB

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