dialog.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. *{ font-size:12px;}
  2. .overlay_dialog {
  3. background-color: #dddddd;
  4. filter: Alpha(Opacity=50,Style=0);
  5. -moz-opacity: 0.4;
  6. opacity: 0.4;
  7. }
  8. .dialog_nw {
  9. width: 25px;
  10. background: url(images/top_left.gif) no-repeat;
  11. height: 28px;
  12. }
  13. .dialog_n {
  14. background: url(images/top_center.gif) repeat-x;
  15. height: 28px;
  16. }
  17. .dialog_ne {
  18. width: 6px;
  19. height: 28px;
  20. background: url(images/top_right.gif) no-repeat;
  21. }
  22. .dialog_w {
  23. width: 6px;
  24. background: url(images/mid_left.gif) repeat-y;
  25. }
  26. .dialog_e {
  27. width: 6px;
  28. background: url(images/mid_right.gif) repeat-y;
  29. }
  30. .dialog_sw {
  31. width:6px;
  32. height:6px;
  33. background: url(images/bottom_left.gif) no-repeat;
  34. }
  35. .dialog_s {
  36. background-color:#ECF3F6;
  37. background: url(images/bottom_center.gif) repeat-x;
  38. height: 6px;
  39. }
  40. .dialog_se {
  41. width: 6px;
  42. height: 6px;
  43. background: url(images/bottom_right.gif) no-repeat;
  44. }
  45. .dialog_sizer {
  46. width: 10px;
  47. height: 6px;
  48. background: url(images/sizer.gif) no-repeat;
  49. cursor:se-resize;
  50. }
  51. .dialog_close {
  52. width: 26px;
  53. height: 24px;
  54. background: transparent url(images/close.gif) no-repeat 0 0;
  55. float:right;
  56. margin-right:3px;
  57. cursor:pointer;
  58. z-index:2000;
  59. }
  60. .dialog_minimize {
  61. width: 25px;
  62. height: 24px;
  63. background: transparent url(images/mini.gif) no-repeat 0 0;
  64. float:right;
  65. margin-right:3px;
  66. cursor:pointer;
  67. z-index:2000;
  68. }
  69. .dialog_maximize {
  70. width: 26px;
  71. height: 24px;
  72. background: transparent url(images/maxi.gif) no-repeat 0 0;
  73. float:right;
  74. margin-right:3px;
  75. z-index:2000;
  76. cursor:pointer;
  77. }
  78. .dialog_title {
  79. float:left;
  80. height:20px;
  81. font-size:12px;
  82. font-weight:bold;
  83. width:auto;
  84. color:#ffffff;
  85. line-height:20px;
  86. padding-top:4px;
  87. }
  88. .dialog_content {
  89. overflow-x:hidden;
  90. overflow-y:auto;
  91. background-color:#fff;
  92. }
  93. .dialog_buttons {
  94. text-align:center;
  95. background-color:#eee;
  96. overflow:hidden;
  97. padding-top:2px;
  98. }
  99. .dialog_buttons button {
  100. margin:0 1px 0 1px;
  101. }
  102. .dialog_progress {
  103. float:left;
  104. margin:auto;
  105. text-align:center;
  106. width:100%;
  107. height:100%;
  108. background: #FFF url(images/progress.gif) no-repeat center center;
  109. }
  110. .top_draggable, .bottom_draggable {
  111. cursor:move;
  112. }
  113. .status_bar {
  114. font-size:12px;
  115. }
  116. .status_bar input{
  117. font-size:12px;
  118. }
  119. .dialog {
  120. display: block;
  121. position: absolute;
  122. }
  123. .dialog table.table_window {
  124. border-collapse: collapse;
  125. border-spacing: 0;
  126. width: 100%;
  127. margin: 0px;
  128. padding:0px;
  129. }
  130. .dialog table.table_window td , .dialog table.table_window th {
  131. padding: 0;
  132. }
  133. .dialog_masker{
  134. position: absolute;
  135. }
  136. .dialog .title_window {
  137. -moz-user-select:none;
  138. }
  139. .dialog_btn{ color:#0099dd; height:23px; line-height:18px; padding:0px 10px; font-family:"宋体", Verdana; font-size:12px; margin-right:2px;}