OpenPKG CVS Repository
  http://cvs.openpkg.org/
  ____________________________________________________________________________

  Server: cvs.openpkg.org                  Name:   Thomas Lotterer
  Root:   /v/openpkg/cvs                   Email:  [EMAIL PROTECTED]
  Module: openpkg-registry                 Date:   08-Aug-2006 15:29:13
  Branch: HEAD                             Handle: 2006080814291200

  Modified files:
    openpkg-registry        registry-ui.pl

  Log:
    fix for IE to avoid invisible small checkboxes

  Summary:
    Revision    Changes     Path
    1.97        +13 -0      openpkg-registry/registry-ui.pl
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: openpkg-registry/registry-ui.pl
  ============================================================================
  $ cvs diff -u -r1.96 -r1.97 registry-ui.pl
  --- openpkg-registry/registry-ui.pl   8 Aug 2006 12:37:43 -0000       1.96
  +++ openpkg-registry/registry-ui.pl   8 Aug 2006 13:29:12 -0000       1.97
  @@ -457,6 +457,9 @@
       $css .= ".registry INPUT {\n";
       $css .= "    background:      #ffffff;\n";
       $css .= "}\n";
  +    $css .= ".registry INPUT.checkbox {\n";
  +    $css .= "    width:            16px;\n";
  +    $css .= "}\n";
       $css .= ".registry TD.browse {\n";
       $css .= "    width:           100%;\n";
       $css .= "    background:      #d0d0d0;\n";
  @@ -1513,6 +1516,7 @@
           #   checkallboxes
           $html .= "<td>";
           $html .= $cgi->checkbox(
  +            -class    => "checkbox",
               -name     => "$mode/checkallboxes",
               -checked  => ($mode eq "arrival" ? 1 : 0),
               -label    => "",
  @@ -1530,6 +1534,7 @@
               #   checkbox
               $html .= "<td>";
               $html .= $cgi->checkbox(
  +                -class    => "checkbox",
                   -name     => "$mode/$i/check",
                   -checked  => ($mode eq "arrival" ? 1 : 0),
                   -label    => ""
  @@ -2008,6 +2013,7 @@
           #   checkbox
           $html .= "<td>";
           $html .= $cgi->checkbox(
  +            -class    => "checkbox",
               -name     => "token/new/check",
               -checked  => 1,
               -label    => ""
  @@ -2029,6 +2035,7 @@
           #   userenable
           $html .= "<td>";
           $html .= $cgi->checkbox(
  +            -class    => "checkbox",
               -name     => "token/new/userenable",
               -checked  => 1,
               -label    => ""
  @@ -2040,6 +2047,7 @@
           #   linkenable
           $html .= "<td>";
           $html .= $cgi->checkbox(
  +            -class    => "checkbox",
               -name     => "token/new/linkenable",
               -checked  => $mok,
               -label    => ""
  @@ -2051,6 +2059,7 @@
           #   assocenable
           $html .= "<td>";
           $html .= $cgi->checkbox(
  +            -class    => "checkbox",
               -name     => "token/new/assocenable",
               -checked  => $mok,
               -label    => ""
  @@ -2085,6 +2094,7 @@
                   #   checkbox
                   $html .= "<td>";
                   $html .= $cgi->checkbox(
  +                    -class    => "checkbox",
                       -name     => "token/$k/check",
                       -checked  => 0,
                       -label    => ""
  @@ -2106,6 +2116,7 @@
                   #   userenable
                   $html .= "<td>";
                   $html .= $cgi->checkbox(
  +                    -class    => "checkbox",
                       -name     => "token/$k/userenable",
                       -checked  => $rv->{$k}->{userenable},
                       -label    => ""
  @@ -2117,6 +2128,7 @@
                   #   linkenable
                   $html .= "<td>";
                   $html .= $cgi->checkbox(
  +                    -class    => "checkbox",
                       -name     => "token/$k/linkenable",
                       -checked  => $rv->{$k}->{linkenable},
                       -label    => ""
  @@ -2128,6 +2140,7 @@
                   #   assocenable
                   $html .= "<td>";
                   $html .= $cgi->checkbox(
  +                    -class    => "checkbox",
                       -name     => "token/$k/assocenable",
                       -checked  => $rv->{$k}->{assocenable},
                       -label    => ""
  @@ .
______________________________________________________________________
The OpenPKG Project                                    www.openpkg.org
CVS Repository Commit List                     [email protected]

Reply via email to