[80] | 1 | /* ----------------------------------------------------------------------------------------------------------------*/ |
---|
| 2 | /* ---------->>> global settings needed for thickbox <<<-----------------------------------------------------------*/ |
---|
| 3 | /* ----------------------------------------------------------------------------------------------------------------*/ |
---|
| 4 | *{padding: 0; margin: 0;} |
---|
| 5 | |
---|
| 6 | /* ----------------------------------------------------------------------------------------------------------------*/ |
---|
| 7 | /* ---------->>> thickbox specific link and font settings <<<------------------------------------------------------*/ |
---|
| 8 | /* ----------------------------------------------------------------------------------------------------------------*/ |
---|
| 9 | #TB_window { |
---|
| 10 | font: 12px Arial, Helvetica, sans-serif; |
---|
| 11 | color: #333333; |
---|
| 12 | } |
---|
| 13 | |
---|
| 14 | #TB_secondLine { |
---|
| 15 | font: 10px Arial, Helvetica, sans-serif; |
---|
| 16 | color:#666666; |
---|
| 17 | } |
---|
| 18 | |
---|
| 19 | #TB_window a:link {color: #666666;} |
---|
| 20 | #TB_window a:visited {color: #666666;} |
---|
| 21 | #TB_window a:hover {color: #000;} |
---|
| 22 | #TB_window a:active {color: #666666;} |
---|
| 23 | #TB_window a:focus{color: #666666;} |
---|
| 24 | |
---|
| 25 | /* ----------------------------------------------------------------------------------------------------------------*/ |
---|
| 26 | /* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/ |
---|
| 27 | /* ----------------------------------------------------------------------------------------------------------------*/ |
---|
| 28 | #TB_overlay { |
---|
| 29 | position: fixed; |
---|
| 30 | z-index:100; |
---|
| 31 | top: 0px; |
---|
| 32 | left: 0px; |
---|
| 33 | background-color:#333; |
---|
| 34 | filter:alpha(opacity=75); |
---|
| 35 | -moz-opacity: 0.75; |
---|
| 36 | opacity: 0.75; |
---|
| 37 | height:100%; |
---|
| 38 | width:100%; |
---|
| 39 | } |
---|
| 40 | |
---|
| 41 | * html #TB_overlay { /* ie6 hack */ |
---|
| 42 | position: absolute; |
---|
| 43 | height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'); |
---|
| 44 | } |
---|
| 45 | |
---|
| 46 | #TB_window { |
---|
| 47 | position: fixed; |
---|
| 48 | background: #ffffff; |
---|
| 49 | z-index: 102; |
---|
| 50 | color:#000000; |
---|
| 51 | display:none; |
---|
| 52 | border: 4px solid #525252; |
---|
| 53 | text-align:left; |
---|
| 54 | top:50%; |
---|
| 55 | left:50%; |
---|
| 56 | } |
---|
| 57 | |
---|
| 58 | * html #TB_window { /* ie6 hack */ |
---|
| 59 | position: absolute; |
---|
| 60 | margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px'); |
---|
| 61 | } |
---|
| 62 | |
---|
| 63 | #TB_window img#TB_Image { |
---|
| 64 | display:block; |
---|
| 65 | margin: 15px 0 0 15px; |
---|
| 66 | border-right: 1px solid #ccc; |
---|
| 67 | border-bottom: 1px solid #ccc; |
---|
| 68 | border-top: 1px solid #666; |
---|
| 69 | border-left: 1px solid #666; |
---|
| 70 | } |
---|
| 71 | |
---|
| 72 | #TB_caption{ |
---|
| 73 | height:25px; |
---|
| 74 | padding:7px 30px 10px 25px; |
---|
| 75 | float:left; |
---|
| 76 | } |
---|
| 77 | |
---|
| 78 | #TB_closeWindow{ |
---|
| 79 | height:25px; |
---|
| 80 | padding:11px 25px 10px 0; |
---|
| 81 | float:right; |
---|
| 82 | } |
---|
| 83 | |
---|
| 84 | #TB_closeAjaxWindow{ |
---|
| 85 | padding:7px 10px 5px 0; |
---|
| 86 | margin-bottom:1px; |
---|
| 87 | text-align:right; |
---|
| 88 | float:right; |
---|
| 89 | } |
---|
| 90 | |
---|
| 91 | #TB_ajaxWindowTitle{ |
---|
| 92 | float:left; |
---|
| 93 | padding:7px 0 5px 10px; |
---|
| 94 | margin-bottom:1px; |
---|
| 95 | } |
---|
| 96 | |
---|
| 97 | #TB_title{ |
---|
| 98 | background-color:#e8e8e8; |
---|
| 99 | height:27px; |
---|
| 100 | } |
---|
| 101 | |
---|
| 102 | #TB_ajaxContent{ |
---|
| 103 | clear:both; |
---|
| 104 | padding:2px 15px 15px 15px; |
---|
| 105 | overflow:auto; |
---|
| 106 | text-align:left; |
---|
| 107 | line-height:1.4em; |
---|
| 108 | } |
---|
| 109 | |
---|
| 110 | #TB_ajaxContent.TB_modal{ |
---|
| 111 | padding:15px; |
---|
| 112 | } |
---|
| 113 | |
---|
| 114 | #TB_ajaxContent p{ |
---|
| 115 | padding:5px 0px 5px 0px; |
---|
| 116 | } |
---|
| 117 | |
---|
| 118 | #TB_load{ |
---|
| 119 | position: fixed; |
---|
| 120 | display:none; |
---|
| 121 | height:13px; |
---|
| 122 | width:208px; |
---|
| 123 | z-index:103; |
---|
| 124 | top: 50%; |
---|
| 125 | left: 50%; |
---|
| 126 | margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */ |
---|
| 127 | } |
---|
| 128 | |
---|
| 129 | * html #TB_load { /* ie6 hack */ |
---|
| 130 | position: absolute; |
---|
| 131 | margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px'); |
---|
| 132 | } |
---|
| 133 | |
---|
| 134 | #TB_HideSelect{ |
---|
| 135 | z-index:99; |
---|
| 136 | position:fixed; |
---|
| 137 | top: 0; |
---|
| 138 | left: 0; |
---|
| 139 | background-color:#fff; |
---|
| 140 | border:none; |
---|
| 141 | filter:alpha(opacity=0); |
---|
| 142 | -moz-opacity: 0; |
---|
| 143 | opacity: 0; |
---|
| 144 | height:100%; |
---|
| 145 | width:100%; |
---|
| 146 | } |
---|
| 147 | |
---|
| 148 | * html #TB_HideSelect { /* ie6 hack */ |
---|
| 149 | position: absolute; |
---|
| 150 | height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'); |
---|
| 151 | } |
---|
| 152 | |
---|
| 153 | #TB_iframeContent{ |
---|
| 154 | clear:both; |
---|
| 155 | border:none; |
---|
| 156 | margin-bottom:-1px; |
---|
| 157 | margin-top:1px; |
---|
| 158 | _margin-bottom:1px; |
---|
| 159 | } |
---|