helios.css 26 KB

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