helios.less 20 KB

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