window.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. .window {
  2. overflow: hidden;
  3. padding: 5px;
  4. border-width: 1px;
  5. border-style: solid;
  6. }
  7. .window .window-header {
  8. background: transparent;
  9. padding: 0px 0px 6px 0px;
  10. }
  11. .window .window-body {
  12. border-width: 1px;
  13. border-style: solid;
  14. border-top-width: 0px;
  15. }
  16. .window .window-body-noheader {
  17. border-top-width: 1px;
  18. }
  19. .window .panel-body-nobottom {
  20. border-bottom-width: 0;
  21. }
  22. .window .window-header .panel-icon, .window .window-header .panel-tool {
  23. top: 50%;
  24. margin-top: -11px;
  25. }
  26. .window .window-header .panel-icon {
  27. left: 1px;
  28. }
  29. .window .window-header .panel-tool {
  30. right: 1px;
  31. }
  32. .window .window-header .panel-with-icon {
  33. padding-left: 18px;
  34. }
  35. .window-proxy {
  36. position: absolute;
  37. overflow: hidden;
  38. }
  39. .window-proxy-mask {
  40. position: absolute;
  41. filter: alpha(opacity = 5);
  42. opacity: 0.05;
  43. }
  44. .window-mask {
  45. position: absolute;
  46. left: 0;
  47. top: 0;
  48. width: 100%;
  49. height: 100%;
  50. filter: alpha(opacity = 40);
  51. opacity: 0.40;
  52. font-size: 1px;
  53. overflow: hidden;
  54. }
  55. .window, .window-shadow {
  56. position: absolute;
  57. -moz-border-radius: 5px 5px 5px 5px;
  58. -webkit-border-radius: 5px 5px 5px 5px;
  59. border-radius: 5px 5px 5px 5px;
  60. }
  61. .window-shadow {
  62. background: #ccc;
  63. -moz-box-shadow: 2px 2px 3px #cccccc;
  64. -webkit-box-shadow: 2px 2px 3px #cccccc;
  65. box-shadow: 2px 2px 3px #cccccc;
  66. filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2, MakeShadow=false,
  67. ShadowOpacity=0.2);
  68. }
  69. .window, .window .window-body {
  70. border-color: #95B8E7;
  71. }
  72. .window {
  73. background-color: #E0ECFF;
  74. background: -webkit-linear-gradient(top, #EFF5FF 0, #E0ECFF 20%);
  75. background: -moz-linear-gradient(top, #EFF5FF 0, #E0ECFF 20%);
  76. background: -o-linear-gradient(top, #EFF5FF 0, #E0ECFF 20%);
  77. background: linear-gradient(to bottom, #EFF5FF 0, #E0ECFF 20%);
  78. background-repeat: repeat-x;
  79. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,
  80. endColorstr=#E0ECFF, GradientType=0);
  81. }
  82. .window-proxy {
  83. border: 1px dashed #95B8E7;
  84. }
  85. .window-proxy-mask, .window-mask {
  86. background: #ccc;
  87. }
  88. .window .panel-footer {
  89. border: 1px solid #95B8E7;
  90. position: relative;
  91. top: -1px;
  92. }
  93. .window-thinborder {
  94. padding: 0;
  95. }
  96. .window-thinborder .window-header {
  97. padding: 5px 5px 6px 5px;
  98. }
  99. .window-thinborder .window-body {
  100. border-width: 0px;
  101. }
  102. .window-thinborder .window-header .panel-icon, .window-thinborder .window-header .panel-tool
  103. {
  104. margin-top: -9px;
  105. margin-left: 5px;
  106. margin-right: 5px;
  107. }
  108. .window-noborder {
  109. border: 0;
  110. }