blob: a8ed682ccf6b22cb408718cb3bac0166a041086f (
plain)
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
|
/* CSS for pgeu-system conferences, including skinned ones */
/* Registration dashboard */
div#dash_pagelinks_wrap {
text-align: center;
}
ul.dash_pagelinks {
padding: 0;
}
ul.dash_pagelinks li {
display: inline;
}
div.regwrap {
width: 100%;
overflow: hidden;
padding: 1px;
}
div.regleft {
width: 450px;
float: left;
}
div.regright {
width: 200px;
float: right;
}
div.regright ul {
padding: 0px;
}
div.regright ul li {
margin-top: 0px;
}
div.regwrap.errfld {
background-color: rgb(255,255,204);
border: 1px solid red;
}
div.regwrap.errfld ul.errorlist li {
font-weight: normal !important;
}
form input[type=submit],
form button[type=submit] {
min-width: 220px;
}
/* Regisration confirm */
table.invoiceconfirmtbl {
width: 700px;
}
table.invoiceconfirmtbl td.desc {
}
table.invoiceconfirmtbl tr td.cost {
text-align: right;
white-space: nowrap;
width: 85px;
}
table.invoiceconfirmtbl tr.totalrow td.cost {
border-top: 1px solid black;
}
div.warnfld {
background-color: rgb(255,255,204);
border: 1px solid red;
}
div.warnfld ul li {
font-weight: normal !important;
}
div.pgeu-pagealert {
display: none;
}
/* Registration completed */
table.reginfotbl {
width:100%;
}
table.reginfotbl td {
vertical-align: top;
padding-top: 3px;
padding-bottom: 3px;
}
table.reginfotbl td.firstcol {
width: 150px;
white-space: nowrap;
}
/* Call for papers form */
tr.err {
background-color: #ffb6b6;
}
/* Wiki */
tr.error {
background-color: #ffb6b6;
}
table.pageform {
width: 100%;
}
table.pageform tr {
vertical-align: top;
}
table.pageform input[type=text],textarea,select {
width: 500px;
}
table.versiontable {
border-spacing: 0;
}
table.versiontable tr td,th {
padding: 5px;
text-align: center;
}
textarea.hiddenfield {
display: none;
}
/* Session feedback */
div.feedbackchart {
width: 47%;
display: inline-block;
margin-bottom: 20px;
padding-right: 10px;
}
div.feedbackchart h5 {
font-weight: bold;
margin-left: 5em;
margin-bottom: 1em;
}
div.feedbackbarchart h5 {
text-align: center;
}
div.feedbackchart svg path.pieslice:hover {
stroke-width: 10;
stroke-opacity: 0.5;
}
div.feedbackchart svg rect.chartbar:hover {
stroke-width: 1.5;
stroke-opacity: 0.5;
}
div.feedbackchart svg text {
cursor: default;
}
div.feedbackchart svg .svgpielegend {
font: 13px sans-serif;
}
div.feedbackchart svg .svgpiepercent {
font: 11px sans-serif;
}
|