1
0

helios.less 21 KB

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