source: branches/version-2_5-dev/html/user_data/packages/default/css/thickbox.css @ 19965

Revision 19965, 3.7 KB checked in by uemoto, 13 years ago (diff)

#382(管理画面XHTMLに変更)

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