helios.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. body {
  2. font-size: 13px;
  3. }
  4. .clearfix:after {
  5. content: ".";
  6. display: block;
  7. clear: both;
  8. visibility: hidden;
  9. line-height: 0;
  10. height: 0;
  11. }
  12. .clearfix {
  13. display: inline-block;
  14. }
  15. html[xmlns] .clearfix {
  16. display: block;
  17. }
  18. * html .clearfix {
  19. height: 1%;
  20. }
  21. a {
  22. cursor: pointer;
  23. }
  24. .CodeMirror pre {
  25. line-height: 16px;
  26. }
  27. .btn, .btn-group > .btn, .btn-group > .dropdown-menu {
  28. font-size: 13px;
  29. padding: 2px 8px;
  30. }
  31. .navbar .navbar-fixed-top {
  32. font-size: 12px;
  33. line-height: 16px;
  34. }
  35. .navbar-inner {
  36. min-height: 26px;
  37. }
  38. .navbar .nav > li {
  39. line-height: 16px;
  40. }
  41. .navbar .nav > li > a {
  42. padding: 5px 15px;
  43. }
  44. .navbar-fixed-top i {
  45. opacity: 0.2;
  46. margin-right: 5px;
  47. height: 12px;
  48. margin-top: 0;
  49. }
  50. .navbar-fixed-top .active i {
  51. opacity: 0.6;
  52. }
  53. .nav-pills.nav-stacked > li > a {
  54. border-radius: 0;
  55. -webkit-border-radius: 0;
  56. -moz-border-radius: 0;
  57. padding: 3px;
  58. margin: 0;
  59. }
  60. [class^="icon-"], [class*=" icon-"] {
  61. margin-right: 2px;
  62. }
  63. .nav-pills > .active > a {
  64. background: #ccc;
  65. color: #fff;
  66. }
  67. .focused .nav-pills > .active > a, .nav-pills > .active > a:hover {
  68. background: #08C;
  69. }
  70. #container {
  71. position: fixed;
  72. top: 26px;
  73. bottom: 0;
  74. left: 0;
  75. right: 0;
  76. }
  77. #container .panes {
  78. height: 100%;
  79. width: 100%;
  80. overflow: hidden;
  81. }
  82. #container .panes .pane {
  83. overflow: auto;
  84. }
  85. #container .panes .pane {
  86. overflow: auto;
  87. }
  88. #container .panes .pane > div {
  89. height: 100%;
  90. position: relative;
  91. }
  92. #container .panes .pane .nav-pills {
  93. position: absolute;
  94. overflow-y: auto;
  95. top: 0;
  96. bottom: 37px;
  97. width: 100%;
  98. margin: 0;
  99. }
  100. #container .panes .pane .pane_actions {
  101. position: absolute;
  102. overflow: hidden;
  103. width: 100%;
  104. height: 26px;
  105. bottom: 0;
  106. background: #E5E5E5;
  107. border-top: 1px solid #bbb;
  108. padding: 5px 0;
  109. margin: 0;
  110. text-align: center;
  111. }
  112. #container .panes .pane .pane_actions .info {
  113. padding: 10px 5px 5px;
  114. font-weight: bold;
  115. color: #666;
  116. line-height: 20px;
  117. }
  118. #container .panes .pane .pane_actions .btn-group {
  119. display: inline;
  120. margin-left: 5px;
  121. }
  122. #container .panes .pane .pane_actions .btn-group .btn {
  123. margin: 0;
  124. }
  125. #container .panes .pane .pane_actions .btn-group.switch .btn.active:first-child {
  126. background: #5AD;
  127. color: white;
  128. text-shadow: 0 1px 0 #333;
  129. }
  130. #container .panes .pane .pane_actions .btn {
  131. margin-left: 5px;
  132. }
  133. #container .panes .pane .class_side .nav-pills {
  134. font-weight: bold;
  135. background: #ffd;
  136. }
  137. #container .panes.horizontal > .pane {
  138. height: 50%;
  139. min-height: 50px;
  140. }
  141. #container .panes.vertical > .pane {
  142. width: 50%;
  143. display: inline;
  144. float: left;
  145. height: 100%;
  146. }
  147. #container .splitter {
  148. z-index: 10;
  149. background: #E6E6E6;
  150. border: 1px solid #bbb;
  151. }
  152. #container .splitter.vertical {
  153. width: 4px;
  154. height: 100%;
  155. float: left;
  156. cursor: e-resize;
  157. background-image: url('/images/vsplitter.png');
  158. background-repeat: no-repeat;
  159. background-position: center;
  160. }
  161. #container .splitter.horizontal {
  162. height: 4px;
  163. cursor: s-resize;
  164. background-image: url('/images/hsplitter.png');
  165. background-repeat: no-repeat;
  166. background-position: center;
  167. }
  168. .key_helper {
  169. z-index: 20;
  170. position: fixed;
  171. bottom: 0px;
  172. background: #ddd;
  173. width: 100%;
  174. border-top: 1px solid #AAA;
  175. font-size: 11px;
  176. height: 22px;
  177. }
  178. .key_helper .command {
  179. padding: 0 10px;
  180. }
  181. .key_helper .label {
  182. padding: 0 4px;
  183. border-top: 1px solid white;
  184. border-left: 1px solid white;
  185. border-bottom: 1px solid #666;
  186. border-right: 1px solid #666;
  187. font-family: monospace;
  188. }
  189. .key_helper .action {
  190. padding: 0 5px;
  191. color: #666;
  192. }
  193. .key_helper .selected {
  194. background: rgb(7, 195, 221);
  195. height: 30px;
  196. padding: 4px;
  197. color: white;
  198. font-weight: bold;
  199. text-shadow: 0 -1px 0 #666;
  200. }
  201. .key_helper .close {
  202. font-size: 14px;
  203. line-height: 22px;
  204. }
  205. .key_helper .close:hover {
  206. opacity: 0.8;
  207. }
  208. #keybinding-start-helper {
  209. position: fixed;
  210. top: 50%;
  211. left: 50%;
  212. background: rgba(0,0,0, 0.6);
  213. color: #fff;
  214. width: 300px;
  215. margin-left: -150px;
  216. text-align: center;
  217. padding: 50px 0;
  218. font-size: 16px;
  219. border-radius: 20px;
  220. }
  221. #cog-helper {
  222. position: fixed;
  223. bottom: 4px;
  224. left: 4px;
  225. z-index: 1000;
  226. opacity: 0.6;
  227. transition: all .5s;
  228. -webkit-transition: all .5s;
  229. -moz-transition: all .5s;
  230. -o-transition: all .5s;
  231. -ms-transition: all .5s;
  232. }
  233. #cog-helper:hover {
  234. opacity: 1;
  235. }