helios.less 21 KB

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