panel.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. .panel {
  2. overflow: hidden;
  3. text-align: left;
  4. margin: 0;
  5. border: 0;
  6. -moz-border-radius: 0 0 0 0;
  7. -webkit-border-radius: 0 0 0 0;
  8. border-radius: 0 0 0 0;
  9. }
  10. .panel-header,
  11. .panel-body {
  12. border-width: 1px;
  13. border-style: solid;
  14. }
  15. .panel-header {
  16. padding: 5px;
  17. position: relative;
  18. }
  19. .panel-title {
  20. background: url('images/blank.gif') no-repeat;
  21. }
  22. .panel-header-noborder {
  23. border-width: 0 0 1px 0;
  24. }
  25. .panel-body {
  26. overflow: auto;
  27. border-top-width: 0;
  28. padding: 0;
  29. }
  30. .panel-body-noheader {
  31. border-top-width: 1px;
  32. }
  33. .panel-body-noborder {
  34. border-width: 0px;
  35. }
  36. .panel-body-nobottom {
  37. border-bottom-width: 0;
  38. }
  39. .panel-with-icon {
  40. padding-left: 18px;
  41. }
  42. .panel-icon,
  43. .panel-tool {
  44. position: absolute;
  45. top: 50%;
  46. margin-top: -8px;
  47. height: 16px;
  48. overflow: hidden;
  49. }
  50. .panel-icon {
  51. left: 5px;
  52. width: 16px;
  53. }
  54. .panel-tool {
  55. right: 5px;
  56. width: auto;
  57. }
  58. .panel-tool a {
  59. display: inline-block;
  60. width: 16px;
  61. height: 16px;
  62. opacity: 0.6;
  63. filter: alpha(opacity=60);
  64. margin: 0 0 0 2px;
  65. vertical-align: top;
  66. }
  67. .panel-tool a:hover {
  68. opacity: 1;
  69. filter: alpha(opacity=100);
  70. background-color: #E0F892;
  71. -moz-border-radius: -2px -2px -2px -2px;
  72. -webkit-border-radius: -2px -2px -2px -2px;
  73. border-radius: -2px -2px -2px -2px;
  74. }
  75. .panel-loading {
  76. padding: 11px 0px 10px 30px;
  77. }
  78. .panel-noscroll {
  79. overflow: hidden;
  80. }
  81. .panel-fit,
  82. .panel-fit body {
  83. height: 100%;
  84. margin: 0;
  85. padding: 0;
  86. border: 0;
  87. overflow: hidden;
  88. }
  89. .panel-loading {
  90. background: url('images/loading.gif') no-repeat 10px 10px;
  91. }
  92. .panel-tool-close {
  93. background: url('images/panel_tools.png') no-repeat -16px 0px;
  94. }
  95. .panel-tool-min {
  96. background: url('images/panel_tools.png') no-repeat 0px 0px;
  97. }
  98. .panel-tool-max {
  99. background: url('images/panel_tools.png') no-repeat 0px -16px;
  100. }
  101. .panel-tool-restore {
  102. background: url('images/panel_tools.png') no-repeat -16px -16px;
  103. }
  104. .panel-tool-collapse {
  105. background: url('images/panel_tools.png') no-repeat -32px 0;
  106. }
  107. .panel-tool-expand {
  108. background: url('images/panel_tools.png') no-repeat -32px -16px;
  109. }
  110. .panel-header,
  111. .panel-body {
  112. border-color: #b1c242;
  113. }
  114. .panel-header {
  115. background-color: #e5f0c9;
  116. }
  117. .panel-body {
  118. background-color: #fafafa;
  119. color: #404040;
  120. font-size: 12px;
  121. }
  122. .panel-title {
  123. font-size: 12px;
  124. font-weight: bold;
  125. color: #404040;
  126. height: 16px;
  127. line-height: 16px;
  128. }
  129. .panel-footer {
  130. border: 1px solid #b1c242;
  131. overflow: hidden;
  132. background: #f5f5f5;
  133. }
  134. .panel-footer-noborder {
  135. border-width: 1px 0 0 0;
  136. }