source: branches/2.2/expressoMail1_2/stylesheet/makeWindow.xsl @ 4684

Revision 4684, 1.3 KB checked in by alexandrecorreia, 13 years ago (diff)

Ticket #2083 - Melhorias no leitor de RSS do expressoMail

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:output method="html" omit-xml-declaration="yes"/>   
4   
5    <xsl:param name="lang_label1" />
6    <xsl:param name="lang_label2" />
7    <xsl:param name="lang_subscribe" />
8   
9    <xsl:template match="make_window">
10       
11        <div style="border:1px solid #000; margin: 2px; width: 333px;">
12           
13            <div style="margin: 2px;">
14                <div style="margin-top:5px;">
15                    <label><xsl:value-of select="$lang_label1"/></label>
16                </div>
17                <div style="margin-top:5px;">
18                    <input type="text" id="rssEnter" size="40"/>
19                </div>
20                <div style="margin-top:5px;">
21                    <input value="{$lang_subscribe}" onclick="news_edit.subscribe();" type="button" />
22                </div>
23            </div>
24           
25            <div style="margin:5px 2px 2px 2px;border-bottom: 1px solid #000;">
26                <label><xsl:value-of select="$lang_label2"/></label>
27            </div>
28           
29            <div id="listRSS" style="overflow-y: auto; height: 160px; margin: 2px;"></div>
30           
31        </div>
32
33    </xsl:template>
34   
35</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.