2
0

helios.less 21 KB

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