panel.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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: #eaf2ff;
  69. -moz-border-radius: 3px 3px 3px 3px;
  70. -webkit-border-radius: 3px 3px 3px 3px;
  71. border-radius: 3px 3px 3px 3px;
  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: #95B8E7;
  109. }
  110. .panel-header {
  111. background-color: #E0ECFF;
  112. background: -webkit-linear-gradient(top, #EFF5FF 0, #E0ECFF 100%);
  113. background: -moz-linear-gradient(top, #EFF5FF 0, #E0ECFF 100%);
  114. background: -o-linear-gradient(top, #EFF5FF 0, #E0ECFF 100%);
  115. background: linear-gradient(to bottom, #EFF5FF 0, #E0ECFF 100%);
  116. background-repeat: repeat-x;
  117. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,
  118. endColorstr=#E0ECFF, GradientType=0);
  119. }
  120. .panel-body {
  121. background-color: #ffffff;
  122. color: #000000;
  123. font-size: 12px;
  124. }
  125. .panel-title {
  126. font-size: 12px;
  127. font-weight: bold;
  128. color: #0E2D5F;
  129. height: 16px;
  130. line-height: 16px;
  131. }
  132. .panel-footer {
  133. border: 1px solid #95B8E7;
  134. overflow: hidden;
  135. background: #F4F4F4;
  136. }
  137. .panel-footer-noborder {
  138. border-width: 1px 0 0 0;
  139. }