Sourcecode in SkinMgr/page.skin:
1: <?xml version="1.0"?>
2: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3: "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4:
5: <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
6: <head>
7: <title><% response.title %></title>
8: <meta http-equiv="Content-Type" content="text/html" />
9: <meta name="MSSmartTagsPreventParsing" content="TRUE" />
10: <link rel="stylesheet" type="text/css" title="CSS Stylesheet" href="<% context.url %>main.css" />
11: <style type="text/css">
12: <!--
13:
14: /* classes for skin diff */
15: .diff td {
16: padding:0px 5px;
17: }
18: .diff pre {
19: font-size:12px;
20: margin:0px;
21: padding:2px 0px;
22: }
23: .diff .removed {
24: border-top:1px solid <% layout.textcolor %>;
25: background-color: #ff3333;
26: }
27: .diff .added {
28: border-top:1px solid <% layout.textcolor %>;
29: background-color: #33dd33;
30: }
31: .diff .line {
32: border-top:1px solid <% layout.textcolor %>;
33: }
34: .diff .num {
35: border-top:1px solid <% layout.textcolor %>;
36: text-align:right;
37: }
38: .diff .status {
39: padding:0px 5px;
40: border-top:1px solid <% layout.textcolor %>;
41: }
42:
43: // -->
44: </style>
45: </head>
46:
47: <body>
48:
49: <table class="main" cellspacing="0" cellpadding="0">
50: <tr>
51: <td width="20" nowrap="nowrap"> </td>
52: <td valign="top"><% response.body %></td>
53: <td width="20" nowrap="nowrap"> </td>
54: </tr>
55: </table>
56:
57: </body>
58: </html>
59:
|