helios.less 21 KB

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