Skip to content

Commit

Permalink
Merge pull request #351 from mstovenour/fix_edit_triggers_format
Browse files Browse the repository at this point in the history
Changed to consistent font size for trigger edit table
  • Loading branch information
mstovenour committed Jan 2, 2014
2 parents 548347f + 04cf5d8 commit eb5ece3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/bin/triggers.pl
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ sub web_trigger_list {
$html .= "</table>\n" if $type_prev;
$type_prev = $type;
$html .= "<p><B>$type:</B> (<a name='$type' href='#Top'>back to top</a>)\n";
$html .= qq|<table border width="100%">\n|;
$html .= qq|<table class="EditTrigger" border width="100%">\n|;
$html .= "<tr><th></th><th>Name</th><th>Trigger Event</th><th>Action Code</th><th>Type</th><th>Last Run</th></tr>\n";
}

Expand Down
3 changes: 2 additions & 1 deletion web/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ FONT { font-family: Verdana, Arial, Helvetica; font-size:10pt}

P { font-family: Verdana, Arial, Helvetica; font-size:10pt}


LI { font-family: Verdana, Arial, Helvetica; font-size:8pt}


Expand All @@ -29,3 +28,5 @@ A:hover { color: green; }


.error input { color: red; }

table.EditTrigger { font-size:10pt;}

0 comments on commit eb5ece3

Please sign in to comment.