This commit is contained in:
Gerald Raab
2007-06-18 15:41:02 +00:00
parent 041a219130
commit df475ef50a
8 changed files with 1200 additions and 83 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 71 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 B

+93
View File
@@ -0,0 +1,93 @@
table.example {
border:1px solid black;
border-collapse:collapse;
}
table.example th, table.example td {
border:1px solid #aaaaaa;
padding: 2px 15px 2px 15px;
}
table.example thead th {
background-color:#ccccff;
}
table.example tfoot td {
background-color:#ffccff;
}
table.example tr.tbody_header {
font-weight:bold;
text-align:center;
background-color:#dddddd;
}
table.example a.pagelink {
padding-left:5px;
padding-right:5px;
border:1px solid #666666;
margin:0px 5px 0px 5px;
}
table.example a.currentpage {
background-color:yellow;
}
/* Striping */
tr.alternate {
background-color:#E6E6CC;
}
/* Sorting */
th.table-sortable {
cursor:pointer;
background-image:url("icons/01_unsorted.gif");
background-position:center left;
background-repeat:no-repeat;
padding-left:12px;
}
th.table-sorted-asc {
background-image:url("icons/01_ascending.gif");
background-position:center left;
background-repeat:no-repeat;
}
th.table-sorted-desc {
background-image:url("icons/01_descending.gif");
background-position:center left;
background-repeat:no-repeat;
}
th.table-filtered {
background-image:url("filter.gif");
background-position:center left;
background-repeat:no-repeat;
}
select.table-autofilter {
font-size:smaller;
}
/* Examples which stray from the default */
table.altstripe tr.alternate2 {
background-color:#ccffff;
}
/* Sort Icon Styles */
table.sort01 th.table-sortable { background-image:url("icons/01_unsorted.gif"); }
table.sort01 th.table-sorted-asc { background-image:url("icons/01_ascending.gif"); }
table.sort01 th.table-sorted-desc { background-image:url("icons/01_descending.gif"); }
/* Icons box */
.iconset {
margin:5px;
border:1px solid #cccccc;
border-color:#cccccc #666666 #666666 #cccccc;
text-align:center;
cursor:pointer;
width:100px;
}
.iconset img {
margin:3px;
}
/* Documentation */
tr.doc_section {
font-weight:bold;
text-align:center;
background-color:#dddddd;
}
File diff suppressed because it is too large Load Diff