1
0

helios.less 21 KB

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