helios.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .clearfix:after {
  2. content: ".";
  3. display: block;
  4. clear: both;
  5. visibility: hidden;
  6. line-height: 0;
  7. height: 0;
  8. }
  9. .clearfix {
  10. display: inline-block;
  11. }
  12. html[xmlns] .clearfix {
  13. display: block;
  14. }
  15. * html .clearfix {
  16. height: 1%;
  17. }
  18. a {
  19. cursor: pointer;
  20. }
  21. .navbar-fixed-top i {
  22. opacity: 0.2;
  23. margin-right: 10px;
  24. }
  25. .navbar-fixed-top .active i {
  26. opacity: 0.6;
  27. }
  28. .nav-pills.nav-stacked > li > a {
  29. border-radius: 0;
  30. -webkit-border-radius: 0;
  31. -moz-border-radius: 0;
  32. padding: 3px 0;
  33. margin: 0;
  34. }
  35. #container {
  36. position: fixed;
  37. top: 40px;
  38. bottom: 0;
  39. left: 0;
  40. right: 0;
  41. }
  42. #container .panes {
  43. height: 100%;
  44. width: 100%;
  45. overflow: hidden;
  46. }
  47. #container .panes .pane {
  48. overflow: auto;
  49. }
  50. #container .panes .pane {
  51. overflow: auto;
  52. }
  53. #container .panes.horizontal > .pane {
  54. height: 50%;
  55. min-height: 50px;
  56. }
  57. #container .panes.vertical > .pane {
  58. width: 50%;
  59. display: inline;
  60. float: left;
  61. height: 100%;
  62. }
  63. #container .splitter {
  64. z-index: 10;
  65. background: #E6E6E6;
  66. outline: 1px solid #bbb;
  67. }
  68. #container .splitter.vertical {
  69. width: 6px;
  70. height: 100%;
  71. float: left;
  72. cursor: e-resize;
  73. background-image: url('/images/vsplitter.png');
  74. background-repeat: no-repeat;
  75. background-position: center;
  76. }
  77. #container .splitter.horizontal {
  78. height: 5px;
  79. cursor: s-resize;
  80. background-image: url('/images/hsplitter.png');
  81. background-repeat: no-repeat;
  82. background-position: center;
  83. }
  84. .hl_widget.focused {
  85. background: #ffe;
  86. }