diff options
author | Ted Trask <ttrask01@yahoo.com> | 2008-06-10 19:39:50 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2008-06-10 19:39:50 +0000 |
commit | cf06247f4d8776267e3f85511592e779b7f20ccf (patch) | |
tree | e9be676a710d8122eef837868511bf7ffbf07fc0 /www/js/style.css | |
parent | 31e05ffa486ed08e2c7a79ec8c2c76eb60cfde0a (diff) | |
download | acf-core-cf06247f4d8776267e3f85511592e779b7f20ccf.tar.bz2 acf-core-cf06247f4d8776267e3f85511592e779b7f20ccf.tar.xz |
Added javascript to sort certificate table in openssl.
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@1214 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'www/js/style.css')
-rw-r--r-- | www/js/style.css | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/www/js/style.css b/www/js/style.css new file mode 100644 index 0000000..15468dc --- /dev/null +++ b/www/js/style.css @@ -0,0 +1,38 @@ +/* tables */ +table.tablesorter { + font-family:arial; + background-color: #CDCDCD; + margin:10px 0pt 15px; + font-size: 8pt; + width: 100%; + text-align: left; +} +table.tablesorter thead tr th, table.tablesorter tfoot tr th { + background-color: #e6EEEE; + border: 1px solid #FFF; + font-size: 8pt; + padding: 4px; +} +table.tablesorter thead tr .header { + background-image: url(bg.gif); + background-repeat: no-repeat; + background-position: center right; + cursor: pointer; +} +table.tablesorter tbody td { + padding: 4px; + background-color: #FFF; + vertical-align: top; +} +table.tablesorter tbody tr.odd td { + background-color:#F0F0F6; +} +table.tablesorter thead tr .headerSortUp { + background-image: url(asc.gif); +} +table.tablesorter thead tr .headerSortDown { + background-image: url(desc.gif); +} +table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp { +background-color: #8dbdd8; +} |