helios.less 18 KB

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