panel.css 2.4 KB

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