2
0

helios.css 25 KB

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