Highlighting overdues in red, adding accesskey indicator to confirmation dialog
Signed-off-by: Chris Cormack <crc@liblime.com> Signed-off-by: Joshua Ferraro <jmf@liblime.com>
This commit is contained in:
parent
3cb985eab1
commit
9d27237fc7
2 changed files with 12 additions and 3 deletions
|
@ -213,6 +213,11 @@ tr.highlight td, td.highlight {
|
|||
background-color : #F3F3F3;
|
||||
}
|
||||
|
||||
td.od {
|
||||
color : #cc0000;
|
||||
font-weight : bold;
|
||||
}
|
||||
|
||||
tr.warn td {
|
||||
background-color: #FF9090;
|
||||
}
|
||||
|
@ -942,4 +947,8 @@ div.first fieldset {
|
|||
|
||||
div.results {
|
||||
padding : .7em 0;
|
||||
}
|
||||
|
||||
.accesskey {
|
||||
text-decoration : underline;
|
||||
}
|
|
@ -96,12 +96,12 @@
|
|||
<input type="hidden" name="month" value="<!-- TMPL_VAR name="month" -->" />
|
||||
<input type="hidden" name="year" value="<!-- TMPL_VAR name="year" -->" />
|
||||
<input type="hidden" name="branch" value="<!-- TMPL_VAR NAME="branch" -->" />
|
||||
<input type="submit" class="approve" value="Yes, Check Out" accesskey="y" />
|
||||
<input type="submit" class="approve" value="Yes, Check Out (Y)" accesskey="y" />
|
||||
</form>
|
||||
|
||||
<form method="get" action="/cgi-bin/koha/circ/circulation.pl">
|
||||
<input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR NAME="borrowernumber" -->" />
|
||||
<input type="submit" class="deny" value="No, Don't Check Out" accesskey="n" />
|
||||
<input type="submit" class="deny" value="No, Don't Check Out (N)" accesskey="n" />
|
||||
</form>
|
||||
|
||||
</div></div></div></div>
|
||||
|
@ -665,7 +665,7 @@ No patron matched <span class="ex"><!-- TMPL_VAR name="message" --></span>
|
|||
<!-- TMPL_ELSE -->
|
||||
<tr class="highlight">
|
||||
<!-- /TMPL_IF -->
|
||||
<td>
|
||||
<!-- TMPL_IF NAME="od" --><td class="od"><!-- TMPL_ELSE --><td><!-- /TMPL_IF -->
|
||||
<!-- TMPL_VAR NAME="dd" -->
|
||||
</td>
|
||||
<td>
|
||||
|
|
Loading…
Reference in a new issue