helios.css 19 KB

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