Development

#613 (Calendar HTML/CSS)

You must first sign up to be able to contribute.

Ticket #613 (closed task: fixed)

Opened 2 years ago

Last modified 2 years ago

Calendar HTML/CSS

Reported by: anonymous Assigned to:
Priority: minor Milestone: 0.6.3
Component: Version: 0.7.X
Keywords: Cc:
Qualification:

Description

Problem: the layer is not on top

in aqua skin change line:

div.calendar { position: relative;}

to

div.calendar { position: relative;z-index:100; }

Problem: the HTML code is not valid

"calendar_button_img" FormHelper?.php line 497 to 513

  $html = input_tag($name, $value, $options);

"abmiddle" to "middle" line 517

    $html .= image_tag($calendar_button, array('id' => 'trigger_'.$name, 'style' => 'cursor: pointer', 'align' => 'absmiddle'));

to

    $html .= image_tag($calendar_button, array('id' => 'trigger_'.$name, 'style' => 'cursor: pointer', 'align' => 'middle'));

Change History

06/16/06 17:08:57 changed by fabien

  • status changed from new to closed.
  • resolution set to fixed.
  • milestone set to 0.6.3.

in r1467