-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS4255Style.xsl
31 lines (29 loc) · 1.25 KB
/
IRS4255Style.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template name="IRS4255Style">
.styIRS4255TableCellSmallRB{ /* Table cell with no top Bottom borders */
width: 25mm;
color: black;
text-align: right;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 1px; border-right-width: 1px;
}
.styIRS4255TableCellSmallTB{ /* Table cell with only Top side borders */
color: black;
border-style: solid;
border-top-width: 1px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px;
}
.styIRS4255TableCellSmallBB{ /* Table cell with only Bottom side borders */
color: black;
border-style: solid;
border-top-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-right-width: 0px;
}
.styIRS4255TableContainerNBB { /* Scrollable Table Container with no bottom border*/
border-style: solid; border-color: black;
border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px;
width: 187mm; height:4.5mm;
float:none;clear:both;
overflow-y: none;
}
</xsl:template>
</xsl:stylesheet>