helios.less 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909
  1. body {
  2. font-size: 11px;
  3. font-family: "Lucida Grande", helvetica, arial, sans;
  4. background: #eee;
  5. }
  6. .clearfix:after {
  7. content: ".";
  8. display: block;
  9. clear: both;
  10. visibility: hidden;
  11. line-height: 0;
  12. height: 0;
  13. }
  14. .clearfix {
  15. display: inline-block;
  16. }
  17. html[xmlns] .clearfix {
  18. display: block;
  19. }
  20. * html .clearfix {
  21. height: 1%;
  22. }
  23. #helios {
  24. a {
  25. cursor: pointer;
  26. }
  27. i {
  28. opacity: 1;
  29. }
  30. [class^="icon-"], [class*=" icon-"] {
  31. margin-top: 0;
  32. }
  33. .CodeMirror {
  34. position: absolute;
  35. overflow: hidden;
  36. height: 100%;
  37. width: 100%;
  38. }
  39. .CodeMirror-hints {
  40. border-radius: 0;
  41. font-family: Menlo, Monaco, "Lucida Console", Courier, monospace;
  42. font-size: 11px;
  43. line-height: 1em;
  44. padding: 0;
  45. max-height: 120px;
  46. }
  47. .CodeMirror-hint {
  48. border-radius: 0;
  49. padding: 0 10px;
  50. }
  51. .CodeMirror pre {
  52. font-family: Menlo, Monaco, "Lucida Console", "Ubuntu Mono", Courier, monospace;
  53. line-height: 16px;
  54. font-size: 13px;
  55. }
  56. .CodeMirror-gutter.stops {
  57. width: 20px;
  58. }
  59. .CodeMirror .CodeMirror-gutter-elt {
  60. line-height: 1.5em;
  61. }
  62. .CodeMirror .highlighted.CodeMirror-linebackground {
  63. background-color: #ffffaa;
  64. }
  65. .CodeMirror .CodeMirror-gutter-elt .stop {
  66. width: 16px;
  67. height: 16px;
  68. background: url('../images/arrowRight.png');
  69. margin-left: 2px;
  70. }
  71. .state {
  72. position: absolute;
  73. right: 15px;
  74. top: 10px;
  75. width: 16px;
  76. height: 16px;
  77. }
  78. .state.modified {
  79. background: transparent url('../images/modified.png') 50% 50% no-repeat;
  80. }
  81. .editor {
  82. position: absolute;
  83. top: 0;
  84. bottom: 23px;
  85. left: 0;
  86. right: 0;
  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. }
  112. .navbar-fixed-top a span,
  113. .dialog .nav a span {
  114. padding: 1px;
  115. padding-left: 18px;
  116. background-position: center left;
  117. background-repeat: no-repeat;
  118. background-position: 0px -1px;
  119. }
  120. .navbar-fixed-top i.close {
  121. width: 14px;
  122. height: 16px;
  123. margin-left: 4px;
  124. background-image: url('../images/close.gif');
  125. margin-right: 0;
  126. background-position: center left;
  127. margin-top: 2px;
  128. }
  129. .navbar-fixed-top a,
  130. .dialog .nav a {
  131. span.references {
  132. background-image: url('../images/references.png')
  133. }
  134. span.browser {
  135. background-image: url('../images/browser.png')
  136. }
  137. span.sunit {
  138. background-image: url('../images/sunit.png')
  139. }
  140. span.workspace {
  141. background-image: url('../images/workspace.png')
  142. }
  143. span.debugger {
  144. background-image: url('../images/debugger.png')
  145. }
  146. span.inspector {
  147. background-image: url('../images/inspector.png')
  148. }
  149. }
  150. .navbar-fixed-top .navbar-inner {
  151. min-height: 20px;
  152. background-color: #dbdbdb;
  153. border-bottom: 1px solid #666;
  154. background-image: linear-gradient(top, #dfdfdf, #d0d0d0);
  155. background-image: -webkit-linear-gradient(top, #dfdfdf, #d0d0d0);
  156. background-image: -moz-linear-gradient(top, #dfdfdf, #d0d0d0);
  157. background-image: -owebkit-linear-gradient(top, #dfdfdf, #d0d0d0);
  158. box-shadow: 0 0 0;
  159. }
  160. .navbar .nav > li {
  161. line-height: 16px;
  162. }
  163. .navbar .nav > li > a {
  164. line-height: 22px;
  165. padding: 0px 8px;
  166. font-size: 11px;
  167. color: #444;
  168. text-shadow: 0 1px 0 #ddd;
  169. }
  170. .nav > li > a:hover {
  171. background: transparent;
  172. }
  173. .navbar .nav > .active > a,
  174. .navbar .nav > .active > a:hover,
  175. .navbar .nav > .active > a:focus {
  176. background-color: #bababa;
  177. background-image: linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  178. background-image: -webkit-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -webkit-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  179. background-image: -moz-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -moz-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  180. background-image: -o-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -o-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  181. text-shadow: #ddd 0px 1px 0px;
  182. color: #222;
  183. }
  184. .navbar-fixed-top i {
  185. opacity: 0.4;
  186. margin-right: 5px;
  187. height: 12px;
  188. margin-top: 0;
  189. }
  190. .navbar-fixed-top .active i {
  191. opacity: 0.6;
  192. }
  193. .nav-pills.nav-stacked > li > a {
  194. border-radius: 0;
  195. -webkit-border-radius: 0;
  196. -moz-border-radius: 0;
  197. padding: 2px 2px 1px 4px;
  198. margin: 0;
  199. font-size: 11px;
  200. color: #111;
  201. white-space: nowrap;
  202. }
  203. [class^="icon-"], [class*=" icon-"] {
  204. margin-right: 2px;
  205. }
  206. .dropdown-menu {
  207. border-radius: 0;
  208. padding: 0;
  209. margin: 3px;
  210. }
  211. .nav-pills > .active > a {
  212. background-color: #ddd;
  213. color: #fff;
  214. text-shadow: 0 0 0;
  215. }
  216. .focused .nav-pills {
  217. background-color: #f3f7fb;
  218. }
  219. .focused .nav-pills > .active > a,
  220. .nav-pills > .active > a:hover,
  221. .dropdown-menu li > a:hover,
  222. .dropdown-menu li > a:focus,
  223. .dropdown-submenu:hover > a,
  224. .dropdown-menu .active > a,
  225. .dropdown-menu .active > a:hover,
  226. .CodeMirror-hint-active {
  227. background: rgba(95, 159, 228, 0.62);
  228. color: #fff;
  229. text-shadow: 0 0 0;
  230. }
  231. .tool_container {
  232. position: absolute;
  233. top: 23px;
  234. bottom: 0;
  235. left: 0;
  236. right: 0;
  237. }
  238. .transcript textarea {
  239. width: 100%;
  240. height: 100%;
  241. margin: 0;
  242. padding: 0;
  243. border: 0;
  244. }
  245. .tool_container .panes {
  246. position: relative;
  247. height: 100%;
  248. width: 100%;
  249. overflow: hidden;
  250. }
  251. .tool_container .panes .pane {
  252. position: absolute;
  253. overflow: auto;
  254. top: 0;
  255. left: 0;
  256. right: 0;
  257. bottom: 0;
  258. background: #fefefe;
  259. }
  260. .tool_container .multi_pane {
  261. position: relative;
  262. height: 100%;
  263. width: auto;
  264. overflow-x: auto;
  265. }
  266. .tool_container .multi_pane .pane {
  267. height: 100%;
  268. max-width: 300px;
  269. border-right: 1px solid #888;
  270. }
  271. .tool_container .panes .pane > div {
  272. height: 100%;
  273. position: relative;
  274. }
  275. .tool_container .panes.horizontal > .pane {
  276. min-height: 50px;
  277. }
  278. .tool_container .panes.horizontal > .pane {
  279. top: 50%;
  280. }
  281. .tool_container .panes.horizontal > .pane:first-child {
  282. top: 0;
  283. bottom: 50%;
  284. }
  285. .tool_container .panes.vertical > .pane {
  286. left: 50%;
  287. }
  288. .tool_container .panes.vertical > .pane:first-child {
  289. left: 0;
  290. right: 50%;
  291. }
  292. .tool_container .splitter {
  293. position: absolute;
  294. border-width: 0;
  295. z-index: 10;
  296. }
  297. .tool_container .splitter.vertical {
  298. width: 5px;
  299. left: 50%;
  300. margin-left: -1px;
  301. border-left: 1px solid #888;
  302. height: 100%;
  303. float: left;
  304. cursor: ew-resize;
  305. }
  306. .tool_container .splitter.horizontal {
  307. top: 50%;
  308. height: 5px;
  309. margin-top: -1px;
  310. width: 100%;
  311. border-top: 1px solid #888;
  312. cursor: ns-resize;
  313. }
  314. .tool_container .panes .pane .nav-pills {
  315. position: absolute;
  316. overflow-y: auto;
  317. top: 17px;
  318. bottom: 17px;
  319. width: 100%;
  320. margin: 0;
  321. }
  322. .tool_container .pane .nav-pills i {
  323. display: inline-block;
  324. width: 16px;
  325. height: 16px;
  326. margin-right: 4px;
  327. background-image: none;
  328. background-position: top left;
  329. line-height: 14px;
  330. vertical-align: text-top;
  331. }
  332. .tool_container .pane .nav-pills i.announcement {
  333. background-image: url('../images/announcement.png');
  334. }
  335. .tool_container .pane .nav-pills i.class {
  336. background-image: url('../images/class.png');
  337. }
  338. .tool_container .pane .nav-pills i.collection {
  339. background-image: url('../images/collection.png');
  340. }
  341. .tool_container .pane .nav-pills i.test {
  342. background-image: url('../images/test.png');
  343. }
  344. .tool_container .pane .nav-pills i.exception {
  345. background-image: url('../images/exception.png');
  346. }
  347. .tool_container .pane .nav-pills i.widget {
  348. background-image: url('../images/widget.png');
  349. }
  350. .tool_container .pane .nav-pills i.magnitude {
  351. background-image: url('../images/magnitude.png');
  352. }
  353. .tool_container .pane .nav-pills i.package {
  354. background-image: url('../images/package.png');
  355. }
  356. .tool_container .pane .nav-pills i.private {
  357. background-image: url('../images/private.png');
  358. }
  359. .tool_container .pane .nav-pills i.extension {
  360. background-image: url('../images/extension.png');
  361. }
  362. .tool_container .pane .nav-pills i.initialization {
  363. background-image: url('../images/initialization.png');
  364. }
  365. .tool_container .pane .nav-pills i.package {
  366. background-image: url('../images/package.png');
  367. }
  368. .tool_container .pane .nav-pills i.override {
  369. background-image: url('../images/override.png ');
  370. }
  371. .tool_container .pane .nav-pills i.overridden {
  372. background-image: url('../images/overridden.png');
  373. }
  374. .tool_container .pane .nav-pills i.override-overridden {
  375. background-image: url('../images/override-overridden.png');
  376. }
  377. .tool_container .pane .nav-pills i.warning {
  378. background-image: url('../images/warning.gif');
  379. }
  380. .tool_container .pane .nav-pills i.uncommented {
  381. background-image: url('../images/uncommented.png');
  382. }
  383. .tool_container .list-label {
  384. font-size: 11px;
  385. border-radius: 0;
  386. border-bottom: 1px solid #999;
  387. border-top: 1px solid #eee;
  388. background-color: #eee;
  389. background-image: -webkit-linear-gradient(top, #eee, #ddd);
  390. background-image: -moz-linear-gradient(top, #eee, #ddd);
  391. background-image: -o-linear-gradient(top, #eee, #ddd);
  392. background-image: linear-gradient(top, #eee, #ddd);
  393. color: #444;
  394. font-weight: bold;
  395. text-shadow: 0 0 0;
  396. padding-left: 4px;
  397. line-height: 14px;
  398. height: 15px;
  399. text-shadow: 0 1px 0 #eee;
  400. }
  401. .tool_container .list-label .btn-group.cog {
  402. position: absolute;
  403. top: 0;
  404. right: 0;
  405. padding: 0;
  406. margin: 0;
  407. }
  408. .tool_container .list-label .btn-group.open .dropdown-toggle {
  409. box-shadow: 0 0 0;
  410. border: 0;
  411. }
  412. .tool_container .list-label .btn-group > .dropdown-menu {
  413. padding: 0;
  414. font-size: 11px;
  415. }
  416. .tool_container .list-label .btn-group.cog i {
  417. margin-top: 1px;
  418. }
  419. .tool_container .list-label .cog .btn.dropdown-toggle {
  420. padding: 0;
  421. margin: 0;
  422. line-height: 12px;
  423. border: 0;
  424. background: transparent;
  425. }
  426. .tool_container .panes .pane .pane_actions {
  427. position: absolute;
  428. overflow: hidden;
  429. width: 100%;
  430. height: 16px;
  431. bottom: 0;
  432. padding: 0;
  433. margin: 0;
  434. }
  435. .tool_container .pane_actions, .tool_container .buttons_bar {
  436. background: #dadada;
  437. border-top: 1px solid #666;
  438. background-image: -webkit-linear-gradient(top, #dadada, #bdbdbd);
  439. background-image: -moz-linear-gradient(top, #dadada, #bdbdbd);
  440. background-image: -o-linear-gradient(top, #dadada, #bdbdbd);
  441. background-image: linear-gradient(top, #dadada, #bdbdbd);
  442. }
  443. .tool_container .panes .pane .pane_actions .info {
  444. padding: 10px 5px 5px;
  445. font-weight: bold;
  446. color: #666;
  447. line-height: 20px;
  448. }
  449. .tool_container .panes .pane .pane_actions .btn-group {
  450. display: inline;
  451. margin-left: 5px;
  452. }
  453. .tool_container .panes .pane .pane_actions label {
  454. display: inline-block;
  455. padding-left: 30px;
  456. font-size: 11px;
  457. line-height: 16px;
  458. vertical-align: top;
  459. text-shadow: #ddd 0px 1px 0px;
  460. color: #222;
  461. }
  462. .tool_container .panes .pane .pane_actions label input {
  463. float: none;
  464. vertical-align: top;
  465. margin-top: 2px;
  466. margin-right: 5px;
  467. }
  468. .tool_container .panes .pane .pane_actions .btn {
  469. background: transparent;
  470. border: 0;
  471. font-size: 11px;
  472. line-height: 16px;
  473. padding: 0 5px;
  474. margin: 0;
  475. border-radius: 0;
  476. box-shadow: 0 0 0;
  477. vertical-align: top;
  478. /* min-width: 50px; */
  479. }
  480. .tool_container .panes .pane .pane_actions .btn:hover {
  481. background-color: #bbb;
  482. }
  483. .tool_container .panes .pane .pane_actions .btn-group .btn:hover {
  484. background-color: transparent;
  485. }
  486. .tool_container .panes .pane .pane_actions .btn-group .btn.active {
  487. text-shadow: #ddd 0px 1px 0px;
  488. color: #222;
  489. background: #bbb;
  490. background-image: linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  491. background-image: -webkit-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -webkit-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  492. background-image: -moz-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -moz-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  493. background-image: -o-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -o-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  494. }
  495. .tool_container .panes .pane .class_side .nav-pills {
  496. font-weight: bold;
  497. background: #ffd
  498. }
  499. .key_helper {
  500. z-index: 20;
  501. position: fixed;
  502. bottom: 0px;
  503. background: #fff;
  504. background-image: linear-gradient(top, #fafafa, #f0f0f0 50%, #e1e1e1 51%);
  505. background-image: -moz-linear-gradient(top, #fafafa, #f0f0f0 50%, #e1e1e1 51%);
  506. background-image: -o-linear-gradient(top, #fafafa, #f0f0f0 50%, #e1e1e1 51%);
  507. background-image: -webkit-linear-gradient(top, #fafafa, #f0f0f0 50%, #e1e1e1 51%);
  508. width: 100%;
  509. border-top: 1px solid #aaa;
  510. font-size: 11px;
  511. height: 22px;
  512. .command {
  513. padding: 0 2px;
  514. }
  515. #binding-helper-main {
  516. display: inline;
  517. }
  518. .label {
  519. padding: 1px 4px;
  520. font-family: Menlo, Monaco, "Lucida Console", Courier, monospace;
  521. background: transparent;
  522. color: #08C;
  523. text-shadow: none;
  524. border: 0 none;
  525. }
  526. .action {
  527. padding: 0 5px;
  528. color: #666;
  529. }
  530. .selected {
  531. background-image: linear-gradient(top, #ccc, #aaa);
  532. background-image: -moz-linear-gradient(top, #ccc, #aaa);
  533. background-image: -o-linear-gradient(top, #ccc, #aaa);
  534. background-image: -webkit-linear-gradient(top, #ccc, #aaa);
  535. height: 30px;
  536. padding: 0 8px;
  537. color: #333;
  538. font-weight: bold;
  539. text-shadow: 0 1px 0 #fff;
  540. display: inline-block;
  541. border-right: 1px solid #aaa;
  542. }
  543. .close {
  544. font-size: 14px;
  545. line-height: 26px;
  546. opacity: 0.6;
  547. }
  548. .close:hover {
  549. opacity: 0.8;
  550. }
  551. input {
  552. outline: none;
  553. font-size: 11px;
  554. padding: 2px 8px;
  555. background: #fff;
  556. border: 1px solid #a1a1a1;
  557. border-radius: 12px;
  558. box-shadow: inset 0 0px 2px 0px #aaa;
  559. margin: 2px 4px;
  560. line-height: 1em;
  561. }
  562. .error .help-inline,
  563. .error input {
  564. color: #B91010;
  565. font-weight: bold;
  566. }
  567. .typeahead.dropdown-menu {
  568. position: fixed !important;
  569. top: auto !important;
  570. bottom: 30px !important;
  571. }
  572. #cog-helper {
  573. position: fixed;
  574. bottom: 2px;
  575. right: 2px;
  576. z-index: 1000;
  577. opacity: 0.6;
  578. transition: all .5s;
  579. -webkit-transition: all .5s;
  580. -moz-transition: all .5s;
  581. -o-transition: all .5s;
  582. -ms-transition: all .5s;
  583. }
  584. #cog-helper:hover {
  585. opacity: 1;
  586. }
  587. }
  588. #helper {
  589. z-index: 300;
  590. top: 50%;
  591. position: absolute;
  592. left: 50%;
  593. margin-left: -220px;
  594. margin-top: -35px;
  595. width: 400px;
  596. text-align: center;
  597. color: #ddd;
  598. font-size: 18px;
  599. font-weight: bold;
  600. text-shadow: 0 -1px 0 #111;
  601. padding: 20px;
  602. background: rgba(0,0,0, 0.6);
  603. border-radius: 40px;
  604. }
  605. #overlay {
  606. z-index: 2000;
  607. background: transparent;
  608. position: fixed;
  609. top: 0;
  610. left: 0;
  611. right: 0;
  612. bottom: 0;
  613. }
  614. .confirmation, .dialog {
  615. z-index: 2001;
  616. background: rgba(243,243,243,0.9);
  617. background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 5px, transparent 6px);
  618. background-image: -moz-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 5px, transparent 6px);
  619. background-image: -o-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 5px, transparent 6px);
  620. background-image: linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 5px, transparent 6px);
  621. padding: 20px;
  622. width: 250px;
  623. position: fixed;
  624. top: -500px;
  625. left: 50%;
  626. margin-left: -135px;
  627. box-shadow: 0 0 6px #333;
  628. transition: top .5s;
  629. -webkit-transition: top .5s;
  630. -moz-transition: top .5s;
  631. -o-transition: top .5s;
  632. .hl_widget {
  633. &:focus {
  634. outline: 0 none;
  635. }
  636. .form-actions {
  637. padding: 0;
  638. border: 0;
  639. }
  640. }
  641. .nav {
  642. border: 1px solid #999;
  643. span {
  644. font-size: 11px;
  645. font-weight: normal;
  646. }
  647. }
  648. .title {
  649. font-size: 16px;
  650. margin-bottom: 15px;
  651. }
  652. .large {
  653. width: 400px;
  654. margin-left: -220px;
  655. textarea {
  656. width: 385px;
  657. height: 200px;
  658. }
  659. }
  660. textarea {
  661. display: block;
  662. width: 235px;
  663. }
  664. .progress {
  665. height: 5px;
  666. .bar {
  667. background-color: #e9eaf5;
  668. background-image: -webkit-linear-gradient(top, #B1BDD5, #8999b8);
  669. background-image: -moz-linear-gradient(top, #B1BDD5, #8999b8);
  670. background-image: -o-linear-gradient(top, #B1BDD5, #8999b8);
  671. background-image: linear-gradient(top, #B1BDD5, #8999b8);
  672. }
  673. }
  674. span {
  675. font-size: 13px;
  676. font-weight: bold;
  677. }
  678. .buttons {
  679. text-align: right;
  680. margin-top: 20px;
  681. }
  682. &.active {
  683. top: 0;
  684. }
  685. }
  686. .button {
  687. border-radius: 3px !important;
  688. background: #ccc;
  689. border: 1px solid #9B9B9B;
  690. height: 20px;
  691. border-radius: 5px;
  692. min-width: 68px;
  693. padding: 0 10px;
  694. text-align: center;
  695. margin: 0;
  696. margin-left: 10px;
  697. 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;
  698. font: 13px "Lucida Grande", Lucida, Verdana, sans-serif;
  699. }
  700. .button.default {
  701. border-top: 1px solid #535273;
  702. border: 1px solid #4F4D67;
  703. border-bottom: 1px solid #4B4B58;
  704. 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;
  705. 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;
  706. -moz-box-shadow: 0 0 3px rgba(69, 113, 184, 0.8);
  707. -webkit-box-shadow: 0 0 5px rgba(69, 113, 184, 0.44);
  708. box-shadow: 0 0 5px rgba(69, 113, 184, 0.44);
  709. }
  710. .button:hover {
  711. cursor: pointer;
  712. border: 1px solid rgba(0,0,0,.6);
  713. }
  714. .button:active {
  715. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,.5);
  716. -moz-box-shadow: inset 0 0 5px rgba(0,0,0,.5);
  717. box-shadow: inset 0 0 5px rgba(0,0,0,.5);
  718. }
  719. .button:focus {
  720. outline: 0;
  721. }
  722. .doc {
  723. background: white;
  724. }
  725. .doc code .doc pre {
  726. font-size: 11px;
  727. }
  728. .doc code {
  729. padding: 1px 4px;
  730. }
  731. .doc .head {
  732. background: #08C;
  733. padding: 10px;
  734. font-size: 22px;
  735. color: white;
  736. }
  737. .doc .button {
  738. float: right;
  739. }
  740. .doc .markdown,
  741. .doc .inheritance {
  742. padding: 10px;
  743. }
  744. .doc h1 {
  745. font-size: 22px;
  746. margin: 0 10px;
  747. border-bottom: 1px solid #666;
  748. }
  749. .doc h2 {
  750. font-size: 16px;
  751. }
  752. .transcript_container .list-label {
  753. height: 16px;
  754. position: absolute;
  755. top: 0;
  756. right: 0;
  757. left: 0;
  758. }
  759. .transcript {
  760. position: absolute;
  761. top: 17px;
  762. bottom: 0;
  763. left: 0;
  764. right: 0;
  765. }
  766. .transcript textarea {
  767. width: 100%;
  768. height: 100%;
  769. margin: 0;
  770. padding: 0;
  771. border: 0;
  772. }
  773. }