Changeset 267 for trunk/services


Ignore:
Timestamp:
Jul 4, 2007 1:57:41 AM (17 years ago)
Author:
quinn
Message:

Some minor css tweaks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/services/templates/versions_diff.ihtml

    r136 r267  
    1616<?php
    1717foreach ($current as $k=>$v_c) {
    18     $v_d = $data[$k];
    19     $style = $v_d != $v_c ? ' style="color: #c00;"' : '';
     18    $v_d = isset($data[$k]) ? $data[$k] : '<span style="color: #e00;">Unavailable</span>';
     19    $style = $v_d != $v_c ? ' style="font-weight: bold;"' : '';
    2020    ?>
    2121    <tr>
Note: See TracChangeset for help on using the changeset viewer.