Ray's fix for columns width in bulletins
This commit is contained in:
parent
253f4bcb54
commit
7bca339a5b
|
@ -102,6 +102,14 @@ table .span1-2 {
|
|||
float: none;
|
||||
margin-left: 0;
|
||||
}
|
||||
table .span1-3 {
|
||||
min-width: 200px;
|
||||
float: none;
|
||||
margin-left: 0;
|
||||
}
|
||||
.qe-block .form-horizontal .form-actions {
|
||||
text-align:right;
|
||||
}
|
||||
.modal.fade {
|
||||
top: -50%;
|
||||
}
|
|
@ -7,7 +7,7 @@
|
|||
<th class="span1-2"></th>
|
||||
<th class="span1-2"></th>
|
||||
<th class="span1-2"></th>
|
||||
<th class="span1-2"></th>
|
||||
<th class="span1-3"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="sort-holder">
|
||||
|
|
|
@ -79,7 +79,7 @@
|
|||
<th class="sort span1-2 <%= is_sort_active?('tags') %>">
|
||||
<%= link_to t('bulletin.tags') + content_tag(:b, nil, :class => is_sort?('tags')), panel_announcement_back_end_bulletins_path(sortable('tags')) %>
|
||||
</th>
|
||||
<th class="sort span1-2 <%= is_sort_active?('update_user_id') %>">
|
||||
<th class="sort span1-3 <%= is_sort_active?('update_user_id') %>">
|
||||
<%= link_to t('bulletin.last_modified') + content_tag(:b, nil, :class => is_sort?('update_user_id')), panel_announcement_back_end_bulletins_path(sortable('update_user_id')) %>
|
||||
</th>
|
||||
</tr>
|
||||
|
|
Reference in New Issue