helios.css 25 KB

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