helios.less 21 KB

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