source: sandbox/expressoCalendar/xsl/addDialog.xsl @ 920

Revision 920, 2.8 KB checked in by amuller, 15 years ago (diff)

Ticket #88 - Melhorias na visualização mensal adição d dependencia a calendar

  • Property svn:executable set to *
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3<xsl:template match="/text">
4<table style="position: absolute; width: 350px; height: 175px;" border="0" cellpadding="0" cellspacing="0" onmousedown="_dragArea.pressed = 1" onmouseup="_dragArea.pressed = 0" onmousemove="_dragArea.moveWindow(event,this.parentNode)">
5<tbody>
6<tr style="height: 24px;">
7        <td background="templates/default/images/iw_nw.png">
8        </td>
9        <td background="templates/default/images/iw_lu.png">
10        </td>
11        <td background="templates/default/images/iw_ne.png">
12        </td>
13</tr>
14<tr>
15        <td style="width: 24px;" background="templates/default/images/iw_ll.png">
16        </td>
17        <td>
18        <div style="overflow: hidden; height: 130; background-color: #ffffff; z-index: 183; cursor: default">
19        <br/>
20        <font size="-1"><xsl:value-of select="date" /></font>
21        <br/>
22        <table class="" style="width: auto;"><tbody>
23        <tr><td><font size="-1"><label>Horário:</label></font></td>
24                <td style="text-align:center"><font color="black" id="intervalId" size="-1"><xsl:value-of select="time" /></font></td>
25        </tr>
26        <tr>
27                <td><font size="-1"><label forid="b_subject">Título:</label></font></td>
28                <td class="" id="bubble_input">
29                        <input style="height:18px" id="dragEventSubject" onclick="this.focus();" size="35" name="b_subject"/>
30                </td>
31        </tr>
32        <tr>
33                <td><font size="-1"><label forid="b_bdescription">Descrição:</label></font></td>
34                <td class="" id="bubble_input">
35                        <input style="height:18px" id="dragEventDescription" onclick="this.focus();" size="35" name="b_description"/>
36                </td>
37        </tr>
38        </tbody></table>
39        <table><tbody><tr>
40                                <td>
41                                        <div id="addEventLink" style="height: 32; width: 32; background: url(templates/default/images/add.png) no-repeat;" onclick="quickAddEvent(document.getElementById('dragEventSubject').value,document.getElementById('dragEventDescription').value,_dragArea.initEvent,_dragArea.endEvent);"></div>
42                                </td>
43                                <td>
44                                        <div id="addDetailsLink" style="height: 32; width: 32; background: url(templates/default/images/details.png) no-repeat;" onclick="addDetails(document.getElementById('dragEventSubject').value,document.getElementById('dragEventDescription').value,_dragArea.initEvent,_dragArea.endEvent);"></div>
45                                </td>
46                        </tr>
47        </tbody></table>
48        <img id="closeDialog" onclick="calendar.dialog()" src="templates/default/images/close.gif" style="position: absolute; z-index: 184; cursor: pointer;"/>
49        </div>
50        </td>
51        <td style="width: 24px;" background="templates/default/images/iw_lr.png"></td>
52</tr>
53<tr style="height: 24px;">
54        <td background="templates/default/images/iw_sw.png">
55        </td>
56        <td background="templates/default/images/iw_ld.png">
57        </td>
58        <td background="templates/default/images/iw_se.png">
59        </td>
60</tr>
61</tbody>
62</table>
63</xsl:template>
64</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.