helios.less 22 KB

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