panel.css 2.3 KB

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