Bug 18860: Adding thead tags to OPAC messaging settings table
So that it can be styled alongside other tables in the OPAC. To test: 1) Log into staff side 2) Find OPACUserCSS syspref and add the following CSS: thead { color: red; } 3) Log into the OPAC 4) Go to your fines, your search history, your reading history etc - notice all of these table's headings are styled with red text 5) Go to your messaging. Notice this table's headings are not styled with red text 6) Apply patch and refresh page 7) Your messaging table should now have red headings. (You can delete the CSS from OPACUserCSS if you'd like.) Sponsored-by: Catalyst IT Signed-off-by: Jesse Maseto <jesse@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
9a8a6da3f4
commit
6babeeccab
1 changed files with 13 additions and 9 deletions
|
@ -32,6 +32,7 @@
|
|||
<input type="hidden" name="modify" value="yes" />
|
||||
|
||||
<table class="table table-bordered table-condensed table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th> </th>
|
||||
<th>Days in advance</th>
|
||||
|
@ -41,6 +42,8 @@
|
|||
<th>Digests only <i id="info_digests" data-toggle="tooltip" title="You can ask for a digest to reduce the number of messages. Messages will be saved and sent as a single message." data-placement="right" class="icon icon-info-sign"></i></th>
|
||||
<!-- <th>RSS</th> --><th>Do not notify</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
[% FOREACH messaging_preference IN messaging_preferences %]
|
||||
<tr>
|
||||
<td>[% IF ( messaging_preference.Item_Due ) %]Item due
|
||||
|
@ -117,6 +120,7 @@
|
|||
<td><input type="checkbox" class="none" id="none[% messaging_preference.message_attribute_id %]" /></td>
|
||||
</tr>
|
||||
[% END # / FOREACH messaging_preferences%]
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<fieldset class="rows">
|
||||
|
|
Loading…
Reference in a new issue