1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/* ポップアップセレクト */
.popselect input[type="text"]{
background-image: url(../images/search_icon.png);
background-repeat:no-repeat;
background-position:right;
background-color: #D0DFFF;
}
/** メッセージ表示用のダイアログ */
div.hiddendialog{
position: absolute;
visibility:hidden;
top: 0px;
left: 0px;
width: 1px;
height: 1px;
}
/**
* 画面表示用のレイヤーとしてのDIV
*/
div.showdialog {
/*position: absolute; */
position: fixed;
visibility:visible;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
z-index:3;
border: none 1px #000000;
background-image: url(../images/shadow.png);
background-repeat: repeat;
color: #000000;
overflow: hidden;
text-align:center;
}
/**
* ダイアログとしての表示領域
*/
div #selectdialogouterframe{
position: relative;
margin-top: 40px;
margin-left: auto;
margin-right: auto;
text-align: left;
background:#E7E7E7;
border:1px solid #C0C0C0;
border-radius:5px;
overflow: hidden;
}
/**
* ダイアログの中の見出し。
*/
div.selectdialoginnerheader{
position: relative;
margin-top: 5px;
margin-left: auto;
margin-right: 5px;
margin-bottom: 0px;
overflow: hidden;
text-align: right;
}
div.selectdialoginnerheader a {
margin-right: 10px;
}
/**
* ダイアログの中の表示領域。ここの中でスクロールする。
*/
div.selectdialoginnerframe{
position: relative;
margin-top: 5px;
margin-left: auto;
margin-right: auto;
margin-bottom: 10px;
overflow-y: scroll;
background:#FFFFFF;
}
.searchtable {
text-align:left;
margin: 20px auto;
width:90%;
border-collapse: collapse;
}
.searchtable tr td {
padding:5px;
width:166px;
text-align:left;
}
.candidatetable {
text-align:left;
margin: 20px auto;
width:90%;
border:1px dashed #C0C0C0;
border-collapse: collapse;
}
.candidatetable tr td {
padding:5px;
width:166px;
border:1px dashed #C0C0C0;
}
.candidatetable tr td.no_popup_result {
text-align:center;
}
.candidatetable tr td a {
text-align:left;
}
.candidatetable th {
height:17px;
text-align:center;
background-color:#EFEFEF;
border:1px dashed #C0C0C0;
}
/*checkbox table three row*/
.threerowtable {
text-align:left;
margin: 20px auto;
width:90%;
border:1px dashed #C0C0C0;
border-collapse: collapse;
}
.threerowtable tr td {
padding:5px;
width:40%;
border:1px dashed #C0C0C0;
}
.threerowtable tr td .checkbox{
padding:5px;
width:20%;
border:1px dashed #C0C0C0;
}
.threerowtable tr td.no_popup_result {
text-align:center;
}
.threerowtable tr td a {
text-align:left;
}
.threerowtable th {
height:17px;
text-align:center;
background-color:#EFEFEF;
border:1px dashed #C0C0C0;
}
.threerowtable tr td .image_td{
width: 40px;
}
/**
* 候補一覧テーブル内容
*/
table.candidatetable {
/*
position: relative;
width: 100%;
height: 650px;
*/
}
td.img_td {
text-align: center;
vertical-align: middle;
}
.candidatetable_child_table{
border:medium none ;
}
.candidatetable_child_table tr td{
border:medium none ;
text-align: center;
vertical-align: middle;
}
.candidatetable_child_table tr td.image_td {
width:70px;
}
.candidatetable_child_table tr td.image_title_td{
text-align: left;
}