Description:
removed bold from submission_box git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@438 6386c4cd-e34a-4fa8-8920-d93eb39b512e
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r207:88a43bd82021 - - 2 files changed: 2 inserted, 3 deleted

@@ -1,8 +1,8
1 <% form_tag({:action => 'submit'}, :multipart => true) do %>
1 <% form_tag({:action => 'submit'}, :multipart => true) do %>
2 - Problem: <%= select 'submission', 'problem_id',
2 + <b>Problem:</b> <%= select 'submission', 'problem_id',
3 [[(t 'main.specified_in_header'),'-1']] +
3 [[(t 'main.specified_in_header'),'-1']] +
4 @problems.collect {|p| [p.full_name, p.id]},
4 @problems.collect {|p| [p.full_name, p.id]},
5 :selected => '-1' %>
5 :selected => '-1' %>
6 - File: <%= file_field_tag 'file' %>
6 + <b>File:</b> <%= file_field_tag 'file' %>
7 <%= submit_tag 'Submit' %>
7 <%= submit_tag 'Submit' %>
8 <% end %>
8 <% end %>
@@ -79,97 +79,96
79 vertical-align: top;
79 vertical-align: top;
80 font-size: 18px;
80 font-size: 18px;
81 color: #116699;
81 color: #116699;
82 }
82 }
83
83
84 /* Standard table with header and rows with alternating background */
84 /* Standard table with header and rows with alternating background */
85 table.info {
85 table.info {
86 margin: 10px 0;
86 margin: 10px 0;
87 border: 1px solid #666666;
87 border: 1px solid #666666;
88 border-collapse: collapse;
88 border-collapse: collapse;
89 font-size: 12px;
89 font-size: 12px;
90 }
90 }
91
91
92 table.info th {
92 table.info th {
93 border: 1px solid #666666;
93 border: 1px solid #666666;
94 line-height: 1.5em;
94 line-height: 1.5em;
95 padding: 0 0.5em;
95 padding: 0 0.5em;
96 }
96 }
97
97
98 table.info td {
98 table.info td {
99 border-left: 1px solid #666666;
99 border-left: 1px solid #666666;
100 border-right: 1px solid #666666;
100 border-right: 1px solid #666666;
101 line-height: 1.5em;
101 line-height: 1.5em;
102 padding: 0 0.5em;
102 padding: 0 0.5em;
103 }
103 }
104
104
105 tr.info-head {
105 tr.info-head {
106 background: #777777;
106 background: #777777;
107 color: white;
107 color: white;
108 }
108 }
109
109
110 tr.info-odd {
110 tr.info-odd {
111 background: #eeeeee;
111 background: #eeeeee;
112 }
112 }
113
113
114 tr.info-even {
114 tr.info-even {
115 background: #f9f9f9;
115 background: #f9f9f9;
116 }
116 }
117
117
118 /*******************************
118 /*******************************
119 [Main]
119 [Main]
120 ********************************/
120 ********************************/
121 div.submitbox {
121 div.submitbox {
122 background: #eeeeff;
122 background: #eeeeff;
123 border: 1px dotted #99aaee;
123 border: 1px dotted #99aaee;
124 padding: 5px;
124 padding: 5px;
125 margin: 10px 0px;
125 margin: 10px 0px;
126 color: black;
126 color: black;
127 - font-weight: bold;
128 font-size: 13px;
127 font-size: 13px;
129 }
128 }
130
129
131 div.errorExplanation {
130 div.errorExplanation {
132 border: 1px dotted gray;
131 border: 1px dotted gray;
133 color: #bb2222;
132 color: #bb2222;
134 padding: 5px 15px 5px 15px;
133 padding: 5px 15px 5px 15px;
135 margin-bottom: 5px;
134 margin-bottom: 5px;
136 background-color: white;
135 background-color: white;
137 font-weight: normal;
136 font-weight: normal;
138 }
137 }
139
138
140
139
141 div.errorExplanation h2 {
140 div.errorExplanation h2 {
142 color: #cc1111;
141 color: #cc1111;
143 font-weight: bold;
142 font-weight: bold;
144 }
143 }
145
144
146 /*******************************
145 /*******************************
147 [Settings]
146 [Settings]
148 ********************************/
147 ********************************/
149 table.uinfo {
148 table.uinfo {
150 border-collapse: collapse;
149 border-collapse: collapse;
151 border: 1px solid black;
150 border: 1px solid black;
152 font-size: 13px;
151 font-size: 13px;
153 }
152 }
154
153
155 td.uinfo {
154 td.uinfo {
156 vertical-align: top;
155 vertical-align: top;
157 border: 1px solid black;
156 border: 1px solid black;
158 padding: 5px;
157 padding: 5px;
159 }
158 }
160
159
161 th.uinfo {
160 th.uinfo {
162 background: lightgreen;
161 background: lightgreen;
163 vertical-align: top;
162 vertical-align: top;
164 text-align: right;
163 text-align: right;
165 border: 1px solid black;
164 border: 1px solid black;
166 padding: 5px;
165 padding: 5px;
167 }
166 }
168
167
169 /*******************************
168 /*******************************
170 [Submission]
169 [Submission]
171 ********************************/
170 ********************************/
172 div.compilermsgbody {
171 div.compilermsgbody {
173 font-family: monospace;
172 font-family: monospace;
174 }
173 }
175
174
You need to be logged in to leave comments. Login now