helios.less 21 KB

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