helios.css 25 KB

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