~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/ikvm/website/src/documentation/skins/ikvmforrest-site/xslt/html/tab2menu.xsl

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<!--
 
3
This stylesheet generates 'tabs' at the top left of the screen.
 
4
See the imported tab2menu.xsl for details.
 
5
-->
 
6
 
 
7
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 
8
 
 
9
  <xsl:import href="../../../common/xslt/html/tab2menu.xsl"/>
 
10
 
 
11
  <xsl:template match="tabs">
 
12
    <div class="tab">
 
13
      <table cellspacing="0" cellpadding="0" border="0" summary="tab bar">
 
14
        <tr>
 
15
          <xsl:call-template name="base-tabs"/>
 
16
        </tr>
 
17
      </table>
 
18
    </div>
 
19
  </xsl:template>
 
20
 
 
21
  <xsl:template name="pre-separator">
 
22
    <xsl:call-template name="separator"/>
 
23
  </xsl:template>
 
24
 
 
25
  <xsl:template name="post-separator">
 
26
  </xsl:template>
 
27
 
 
28
  <xsl:template name="separator">
 
29
    <td width="6">
 
30
      <img src="{$root}skin/images/spacer.gif" width="6" height="8" alt=""/>
 
31
    </td>
 
32
  </xsl:template>
 
33
 
 
34
  <xsl:template name="selected">
 
35
    <td valign="bottom">
 
36
      <table cellspacing="0" cellpadding="0" border="0"  style="height: 1.8em" summary="selected tab">
 
37
        <tr>
 
38
          <td bgcolor="#4C6C8F" width="5" valign="top">
 
39
            <img src="{$skin-img-dir}/tabSel-left.gif" alt="" width="5" height="5" />
 
40
          </td>
 
41
          <td bgcolor="#4C6C8F" valign="middle">
 
42
            <font face="Arial, Helvetica, Sans-serif" size="2" color="#ffffff">
 
43
              <b>
 
44
                <xsl:call-template name="base-selected"/>
 
45
              </b>
 
46
            </font>
 
47
          </td>
 
48
          <td bgcolor="#4C6C8F" width="5" valign="top">
 
49
            <img src="{$skin-img-dir}/tabSel-right.gif" alt="" width="5" height="5" />
 
50
          </td>
 
51
        </tr>
 
52
      </table>
 
53
    </td>
 
54
  </xsl:template>
 
55
 
 
56
  <xsl:template name="not-selected">
 
57
    <td valign="bottom">
 
58
      <table cellspacing="0" cellpadding="0" border="0" style="height: 1.6em" summary="non selected tab">
 
59
        <tr>
 
60
          <td bgcolor="#B2C4E0" width="5" valign="top">
 
61
            <img src="{$skin-img-dir}/tab-left.gif" alt="" width="5" height="5" />
 
62
          </td>
 
63
          <td bgcolor="#B2C4E0" valign="middle">
 
64
            <xsl:call-template name="base-not-selected"/>
 
65
          </td>
 
66
          <td bgcolor="#B2C4E0" width="5" valign="top">
 
67
            <img src="{$skin-img-dir}/tab-right.gif" alt="" width="5" height="5" />
 
68
          </td>
 
69
        </tr>
 
70
        <tr>
 
71
          <td height="1" colspan="3">
 
72
          </td>
 
73
        </tr>
 
74
      </table>
 
75
    </td>
 
76
  </xsl:template>
 
77
 
 
78
</xsl:stylesheet>