helios.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685
  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. .state {
  56. position: absolute;
  57. right: 15px;
  58. top: 10px;
  59. width: 16px;
  60. height: 16px;
  61. }
  62. .state.modified {
  63. background: transparent url('../images/modified.png') 50% 50% no-repeat;
  64. }
  65. .buttons_bar {
  66. position: absolute;
  67. bottom: 8px;
  68. right: 20px;
  69. z-index: 2;
  70. transition: 0.4s all;
  71. }
  72. .btn, .btn-group > .btn, .btn-group > .dropdown-menu {
  73. padding: 2px 8px;
  74. }
  75. .navbar .navbar-fixed-top {
  76. font-size: 11px;
  77. line-height: 16px;
  78. }
  79. .navbar-fixed-top .navbar-inner {
  80. min-height: 22px;
  81. background-color: #dbdbdb;
  82. border-bottom: 1px solid #666;
  83. background-image: linear-gradient(top, #dbdbdb, #bababa);
  84. background-image: -webkit-linear-gradient(top, #dbdbdb, #bababa);
  85. background-image: -moz-linear-gradient(top, #dbdbdb, #bababa);
  86. background-image: -owebkit-linear-gradient(top, #dbdbdb, #bababa);
  87. box-shadow: 0 0 0;
  88. }
  89. .navbar .nav > li {
  90. line-height: 16px;
  91. }
  92. .navbar .nav > li > a {
  93. padding: 3px 8px;
  94. font-size: 11px;
  95. color: #111;
  96. text-shadow: 0 1px 0 #ddd;
  97. }
  98. .nav > li > a:hover {
  99. background: transparent;
  100. }
  101. .navbar .nav > .active > a,
  102. .navbar .nav > .active > a:hover,
  103. .navbar .nav > .active > a:focus {
  104. background-color: #bababa;
  105. background-image: linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  106. background-image: -webkit-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -webkit-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  107. background-image: -moz-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -moz-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  108. background-image: -o-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -o-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  109. text-shadow: #ddd 0px 1px 0px;
  110. color: #222;
  111. }
  112. .navbar-fixed-top i {
  113. opacity: 0.4;
  114. margin-right: 5px;
  115. height: 12px;
  116. margin-top: 0;
  117. }
  118. .navbar-fixed-top .active i {
  119. opacity: 0.6;
  120. }
  121. .nav-pills.nav-stacked > li > a {
  122. border-radius: 0;
  123. -webkit-border-radius: 0;
  124. -moz-border-radius: 0;
  125. padding: 2px 2px 1px 4px;
  126. margin: 0;
  127. font-size: 11px;
  128. font-family: Menlo, Monaco, "Lucida Console", Courier, monospace;
  129. color: #111;
  130. white-space: nowrap;
  131. }
  132. [class^="icon-"], [class*=" icon-"] {
  133. margin-right: 2px;
  134. }
  135. .dropdown-menu {
  136. border-radius: 0;
  137. padding: 0;
  138. margin: 3px;
  139. }
  140. .nav-pills > .active > a {
  141. background-color: #ddd;
  142. background-image: linear-gradient(top, #ddd, #bababa);
  143. background-image: -moz-linear-gradient(top, #ddd, #bababa);
  144. background-image: -webkit-linear-gradient(top, #ddd, #bababa);
  145. background-image: -o-linear-gradient(top, #ddd, #bababa);
  146. color: #fff;
  147. text-shadow: 0 0 0;
  148. }
  149. .focused .nav-pills {
  150. background-color: #e3e7eb;
  151. }
  152. .focused .nav-pills > .active > a,
  153. .nav-pills > .active > a:hover,
  154. .dropdown-menu li > a:hover,
  155. .dropdown-menu li > a:focus,
  156. .dropdown-submenu:hover > a,
  157. .dropdown-menu .active > a,
  158. .dropdown-menu .active > a:hover,
  159. .CodeMirror-hint-active {
  160. background: #b1bdd5;
  161. background-image: linear-gradient(top, #b1bdd5, #8999b8);
  162. background-image: -webkit-linear-gradient(top, #b1bdd5, #8999b8);
  163. background-image: -moz-linear-gradient(top, #b1bdd5, #8999b8);
  164. background-image: -owebkit-linear-gradient(top, #b1bdd5, #8999b8);
  165. color: #fff;
  166. text-shadow: 0 0 0;
  167. }
  168. .tool_container {
  169. position: absolute;
  170. top: 23px;
  171. bottom: 0;
  172. left: 0;
  173. right: 0;
  174. }
  175. .tool_container .panes {
  176. position: relative;
  177. height: 100%;
  178. width: 100%;
  179. overflow: hidden;
  180. }
  181. .tool_container .panes .pane {
  182. position: absolute;
  183. overflow: auto;
  184. top: 0;
  185. left: 0;
  186. right: 0;
  187. bottom: 0;
  188. background: #f1f1f1;
  189. }
  190. .tool_container .multi_pane {
  191. position: relative;
  192. height: 100%;
  193. width: auto;
  194. overflow-x: auto;
  195. }
  196. .tool_container .multi_pane .pane {
  197. height: 100%;
  198. max-width: 300px;
  199. border-right: 1px solid #888;
  200. }
  201. .tool_container .panes .pane > div {
  202. height: 100%;
  203. position: relative;
  204. }
  205. .tool_container .panes.horizontal > .pane {
  206. min-height: 50px;
  207. }
  208. .tool_container .panes.horizontal > .pane {
  209. top: 50%;
  210. }
  211. .tool_container .panes.horizontal > .pane:first-child {
  212. top: 0;
  213. bottom: 50%;
  214. }
  215. .tool_container .panes.vertical > .pane {
  216. left: 50%;
  217. }
  218. .tool_container .panes.vertical > .pane:first-child {
  219. left: 0;
  220. right: 50%;
  221. }
  222. .tool_container .splitter {
  223. position: absolute;
  224. border-width: 0;
  225. z-index: 10;
  226. }
  227. .tool_container .splitter.vertical {
  228. width: 5px;
  229. left: 50%;
  230. margin-left: -1px;
  231. border-left: 1px solid #888;
  232. height: 100%;
  233. float: left;
  234. cursor: ew-resize;
  235. }
  236. .tool_container .splitter.horizontal {
  237. top: 50%;
  238. height: 5px;
  239. margin-top: -1px;
  240. width: 100%;
  241. border-top: 1px solid #888;
  242. cursor: ns-resize;
  243. }
  244. .tool_container .panes .pane .nav-pills {
  245. position: absolute;
  246. overflow-y: auto;
  247. top: 17px;
  248. bottom: 17px;
  249. width: 100%;
  250. margin: 0;
  251. }
  252. .tool_container .list-label {
  253. font-size: 11px;
  254. border-radius: 0;
  255. border-bottom: 1px solid #666;
  256. background-color: #e9eaf5;
  257. background-image: -webkit-linear-gradient(top, #e9eaf5, #bfc2d2);
  258. color: #222;
  259. font-weight: bold;
  260. text-shadow: 0 0 0;
  261. padding-left: 4px;
  262. line-height: 16px;
  263. text-shadow: 0 1px 0 #eee;
  264. }
  265. .tool_container .list-label .btn-group.cog {
  266. position: absolute;
  267. top: 0;
  268. right: 0;
  269. padding: 0;
  270. margin: 0;
  271. }
  272. .tool_container .list-label .btn-group.open .dropdown-toggle {
  273. box-shadow: 0 0 0;
  274. border: 0;
  275. }
  276. .tool_container .list-label .btn-group > .dropdown-menu {
  277. padding: 0;
  278. font-size: 11px;
  279. }
  280. .tool_container .list-label .btn-group.cog i {
  281. margin-top: 1px;
  282. }
  283. .tool_container .list-label .cog .btn.dropdown-toggle {
  284. padding: 0;
  285. margin: 0;
  286. line-height: 12px;
  287. border: 0;
  288. background: transparent;
  289. }
  290. .tool_container .panes .pane .pane_actions {
  291. position: absolute;
  292. overflow: hidden;
  293. width: 100%;
  294. height: 16px;
  295. bottom: 0;
  296. background: #dadada;
  297. border-top: 1px solid #666;
  298. padding: 0;
  299. margin: 0;
  300. background-image: -webkit-linear-gradient(top, #dadada, #bdbdbd);
  301. }
  302. .tool_container .panes .pane .pane_actions .info {
  303. padding: 10px 5px 5px;
  304. font-weight: bold;
  305. color: #666;
  306. line-height: 20px;
  307. }
  308. .tool_container .panes .pane .pane_actions .btn-group {
  309. display: inline;
  310. margin-left: 5px;
  311. }
  312. .tool_container .panes .pane .pane_actions label {
  313. display: inline-block;
  314. padding-left: 30px;
  315. font-size: 11px;
  316. line-height: 16px;
  317. vertical-align: top;
  318. text-shadow: #ddd 0px 1px 0px;
  319. color: #222;
  320. }
  321. .tool_container .panes .pane .pane_actions label input {
  322. float: none;
  323. vertical-align: top;
  324. margin-top: 2px;
  325. margin-right: 5px;
  326. }
  327. .tool_container .panes .pane .pane_actions .btn {
  328. background: transparent;
  329. border: 0;
  330. font-size: 11px;
  331. line-height: 16px;
  332. padding: 0 5px;
  333. margin: 0;
  334. border-radius: 0;
  335. box-shadow: 0 0 0;
  336. vertical-align: top;
  337. /* min-width: 50px; */
  338. }
  339. .tool_container .panes .pane .pane_actions .btn:hover {
  340. background-color: #bbb;
  341. }
  342. .tool_container .panes .pane .pane_actions .btn-group .btn:hover {
  343. background-color: transparent;
  344. }
  345. .tool_container .panes .pane .pane_actions .btn-group .btn.active {
  346. text-shadow: #ddd 0px 1px 0px;
  347. color: #222;
  348. background: #bbb;
  349. background-image: linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  350. background-image: -webkit-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -webkit-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  351. background-image: -moz-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -moz-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  352. background-image: -o-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -o-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  353. }
  354. .tool_container .panes .pane .class_side .nav-pills {
  355. font-weight: bold;
  356. background: #ffd;
  357. }
  358. .key_helper {
  359. z-index: 20;
  360. position: fixed;
  361. bottom: 0px;
  362. background: #fff;
  363. background-image: linear-gradient(top, #fafafa, #f0f0f0 50%, #e1e1e1 51%);
  364. background-image: -moz-linear-gradient(top, #fafafa, #f0f0f0 50%, #e1e1e1 51%);
  365. background-image: -o-linear-gradient(top, #fafafa, #f0f0f0 50%, #e1e1e1 51%);
  366. background-image: -webkit-linear-gradient(top, #fafafa, #f0f0f0 50%, #e1e1e1 51%);
  367. width: 100%;
  368. border-top: 1px solid #aaa;
  369. font-size: 11px;
  370. height: 22px;
  371. }
  372. .key_helper .command {
  373. padding: 0 2px;
  374. }
  375. .key_helper .label {
  376. padding: 1px 4px;
  377. font-family: Menlo, Monaco, "Lucida Console", Courier, monospace;
  378. background: transparent;
  379. color: #08C;
  380. text-shadow: none;
  381. border: 0 none;
  382. }
  383. .key_helper .action {
  384. padding: 0 5px;
  385. color: #666;
  386. }
  387. .key_helper .selected {
  388. background-image: linear-gradient(top, #ccc, #aaa);
  389. background-image: -moz-linear-gradient(top, #ccc, #aaa);
  390. background-image: -o-linear-gradient(top, #ccc, #aaa);
  391. background-image: -webkit-linear-gradient(top, #ccc, #aaa);
  392. height: 30px;
  393. padding: 0 8px;
  394. color: #333;
  395. font-weight: bold;
  396. text-shadow: 0 1px 0 #fff;
  397. display: inline-block;
  398. border-right: 1px solid #aaa;
  399. }
  400. .key_helper .close {
  401. font-size: 14px;
  402. line-height: 26px;
  403. opacity: 0.6;
  404. }
  405. .key_helper .close:hover {
  406. opacity: 0.8;
  407. }
  408. .key_helper input {
  409. outline: none;
  410. font-size: 11px;
  411. padding: 2px 8px;
  412. background: #fff;
  413. border: 1px solid #a1a1a1;
  414. border-radius: 12px;
  415. box-shadow: inset 0 0px 2px 0px #aaa;
  416. margin: 2px 4px;
  417. line-height: 1em;
  418. }
  419. .key_helper .error .help-inline,
  420. .key_helper .error input {
  421. color: #B91010;
  422. font-weight: bold;
  423. }
  424. .typeahead.dropdown-menu {
  425. position: fixed !important;
  426. top: auto !important;
  427. bottom: 30px !important;
  428. }
  429. #cog-helper {
  430. position: fixed;
  431. bottom: 2px;
  432. right: 2px;
  433. z-index: 1000;
  434. opacity: 0.6;
  435. transition: all .5s;
  436. -webkit-transition: all .5s;
  437. -moz-transition: all .5s;
  438. -o-transition: all .5s;
  439. -ms-transition: all .5s;
  440. }
  441. #cog-helper:hover {
  442. opacity: 1;
  443. }
  444. #helper {
  445. z-index: 300;
  446. top: 50%;
  447. position: absolute;
  448. left: 50%;
  449. margin-left: -220px;
  450. margin-top: -35px;
  451. width: 400px;
  452. text-align: center;
  453. color: #ddd;
  454. font-size: 18px;
  455. font-weight: bold;
  456. text-shadow: 0 -1px 0 #111;
  457. padding: 20px;
  458. background: rgba(0,0,0, 0.6);
  459. border-radius: 40px;
  460. }
  461. #overlay {
  462. z-index: 2000;
  463. background: transparent;
  464. position: fixed;
  465. top: 0;
  466. left: 0;
  467. right: 0;
  468. bottom: 0;
  469. }
  470. .confirmation, .dialog {
  471. z-index: 2001;
  472. background: rgba(243,243,243,0.9);
  473. background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 5px, transparent 6px);
  474. background-image: -moz-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 5px, transparent 6px);
  475. background-image: -o-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 5px, transparent 6px);
  476. background-image: linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 5px, transparent 6px);
  477. padding: 20px;
  478. width: 250px;
  479. position: fixed;
  480. top: -500px;
  481. left: 50%;
  482. margin-left: -135px;
  483. box-shadow: 0 0 6px #333;
  484. transition: top .5s;
  485. -webkit-transition: top .5s;
  486. -moz-transition: top .5s;
  487. -o-transition: top .5s;
  488. }
  489. .confirmation.large,
  490. .dialog.large {
  491. width: 400px;
  492. margin-left: -220px;
  493. }
  494. .confirmation textarea,
  495. .dialog textarea {
  496. display: block;
  497. width: 235px;
  498. }
  499. .confirmation.large textarea,
  500. .dialog.large textarea {
  501. width: 385px;
  502. height: 200px;
  503. }
  504. .confirmation span,
  505. .dialog span {
  506. font-size: 13px;
  507. font-weight: bold;
  508. }
  509. .confirmation .buttons,
  510. .dialog .buttons {
  511. text-align: right;
  512. margin-top: 20px;
  513. }
  514. .confirmation.active,
  515. .dialog.active {
  516. top: 0;
  517. }
  518. .button {
  519. border-radius: 3px !important;
  520. background: #ccc;
  521. border: 1px solid #9B9B9B;
  522. height: 20px;
  523. border-radius: 5px;
  524. min-width: 68px;
  525. padding: 0 10px;
  526. text-align: center;
  527. margin: 0;
  528. margin-left: 10px;
  529. 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;
  530. font: 13px "Lucida Grande", Lucida, Verdana, sans-serif;
  531. }
  532. .button.default {
  533. border-top: 1px solid #535273;
  534. border: 1px solid #4F4D67;
  535. border-bottom: 1px solid #4B4B58;
  536. 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;
  537. 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;
  538. -moz-box-shadow: 0 0 3px rgba(69, 113, 184, 0.8);
  539. -webkit-box-shadow: 0 0 5px rgba(69, 113, 184, 0.44);
  540. box-shadow: 0 0 5px rgba(69, 113, 184, 0.44);
  541. }
  542. .button:hover {
  543. cursor: pointer;
  544. border: 1px solid rgba(0,0,0,.6);
  545. }
  546. .button:active {
  547. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,.5);
  548. -moz-box-shadow: inset 0 0 5px rgba(0,0,0,.5);
  549. box-shadow: inset 0 0 5px rgba(0,0,0,.5);
  550. }
  551. .button:focus {
  552. outline: 0;
  553. }
  554. .doc {
  555. background: white;
  556. }
  557. .doc code .doc pre {
  558. font-size: 11px;
  559. }
  560. .doc code {
  561. padding: 1px 4px;
  562. }
  563. .doc .head {
  564. background: #08C;
  565. padding: 10px;
  566. font-size: 22px;
  567. color: white;
  568. }
  569. .doc .button {
  570. float: right;
  571. }
  572. .doc .markdown,
  573. .doc .inheritance {
  574. padding: 10px;
  575. }
  576. .doc h1 {
  577. font-size: 22px;
  578. margin: 0 10px;
  579. border-bottom: 1px solid #666;
  580. }
  581. .doc h2 {
  582. font-size: 16px;
  583. }