helios.css 22 KB

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