thickbox.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. #TB_overlay {
  2. background: #000;
  3. opacity: 0.7;
  4. filter: alpha(opacity=70);
  5. position: fixed;
  6. top: 0;
  7. right: 0;
  8. bottom: 0;
  9. left: 0;
  10. z-index: 100050; /* Above DFW. */
  11. }
  12. #TB_window {
  13. position: fixed;
  14. background-color: #fff;
  15. z-index: 100050; /* Above DFW. */
  16. visibility: hidden;
  17. text-align: left;
  18. top: 50%;
  19. left: 50%;
  20. -webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
  21. box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
  22. }
  23. #TB_window img#TB_Image {
  24. display: block;
  25. margin: 15px 0 0 15px;
  26. border-right: 1px solid #ccc;
  27. border-bottom: 1px solid #ccc;
  28. border-top: 1px solid #666;
  29. border-left: 1px solid #666;
  30. }
  31. #TB_caption{
  32. height: 25px;
  33. padding: 7px 30px 10px 25px;
  34. float: left;
  35. }
  36. #TB_closeWindow {
  37. height: 25px;
  38. padding: 11px 25px 10px 0;
  39. float: right;
  40. }
  41. #TB_closeWindowButton {
  42. position: absolute;
  43. left: auto;
  44. right: 0;
  45. width: 29px;
  46. height: 29px;
  47. border: 0;
  48. padding: 0;
  49. background: none;
  50. cursor: pointer;
  51. outline: none;
  52. -webkit-transition: color .1s ease-in-out, background .1s ease-in-out;
  53. transition: color .1s ease-in-out, background .1s ease-in-out;
  54. }
  55. #TB_ajaxWindowTitle {
  56. float: left;
  57. font-weight: 600;
  58. line-height: 29px;
  59. overflow: hidden;
  60. padding: 0 29px 0 10px;
  61. text-overflow: ellipsis;
  62. white-space: nowrap;
  63. width: calc( 100% - 39px );
  64. }
  65. #TB_title {
  66. background: #fcfcfc;
  67. border-bottom: 1px solid #ddd;
  68. height: 29px;
  69. }
  70. #TB_ajaxContent {
  71. clear: both;
  72. padding: 2px 15px 15px 15px;
  73. overflow: auto;
  74. text-align: left;
  75. line-height: 1.4em;
  76. }
  77. #TB_ajaxContent.TB_modal {
  78. padding: 15px;
  79. }
  80. #TB_ajaxContent p {
  81. padding: 5px 0px 5px 0px;
  82. }
  83. #TB_load {
  84. position: fixed;
  85. display: none;
  86. z-index: 100050;
  87. top: 50%;
  88. left: 50%;
  89. background-color: #E8E8E8;
  90. border: 1px solid #555;
  91. margin: -45px 0 0 -125px;
  92. padding: 40px 15px 15px;
  93. }
  94. #TB_HideSelect {
  95. z-index: 99;
  96. position: fixed;
  97. top: 0;
  98. left: 0;
  99. background-color: #fff;
  100. border: none;
  101. filter: alpha(opacity=0);
  102. opacity: 0;
  103. height: 100%;
  104. width: 100%;
  105. }
  106. #TB_iframeContent {
  107. clear: both;
  108. border: none;
  109. }
  110. .tb-close-icon {
  111. display: block;
  112. color: #666;
  113. text-align: center;
  114. line-height: 29px;
  115. width: 29px;
  116. height: 29px;
  117. position: absolute;
  118. top: 0;
  119. right: 0;
  120. }
  121. .tb-close-icon:before {
  122. content: "\f158";
  123. font: normal 20px/29px dashicons;
  124. speak: never;
  125. -webkit-font-smoothing: antialiased;
  126. -moz-osx-font-smoothing: grayscale;
  127. }
  128. #TB_closeWindowButton:hover .tb-close-icon,
  129. #TB_closeWindowButton:focus .tb-close-icon {
  130. color: #006799;
  131. }
  132. #TB_closeWindowButton:focus .tb-close-icon {
  133. -webkit-box-shadow:
  134. 0 0 0 1px #5b9dd9,
  135. 0 0 2px 1px rgba(30, 140, 190, .8);
  136. box-shadow:
  137. 0 0 0 1px #5b9dd9,
  138. 0 0 2px 1px rgba(30, 140, 190, .8);
  139. }