From f5bc0eb13f5335ad82b8fdad5e33916f9a827f14 Mon Sep 17 00:00:00 2001 From: octo Date: Sun, 17 Apr 2005 14:46:55 +0000 Subject: [PATCH] Fixed the stylesheets again.. They really need a rewrite, too :/ --- reports/dark-theme/style.css | 360 ++++++++++++++++++++++++++++++++++++++++++ reports/light-theme/style.css | 13 +- reports/liner-theme/style.css | 337 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 705 insertions(+), 5 deletions(-) create mode 100644 reports/dark-theme/style.css create mode 100644 reports/liner-theme/style.css diff --git a/reports/dark-theme/style.css b/reports/dark-theme/style.css new file mode 100644 index 0000000..73614ec --- /dev/null +++ b/reports/dark-theme/style.css @@ -0,0 +1,360 @@ +/* + * General settings + */ + +a +{ + color: white; + background-color: transparent; + text-decoration: none; + font-weight: bold; +} + +a:hover +{ + text-decoration: underline; +} + +a:visited +{ + color: silver; + background-color: transparent; +} + +body +{ + background-color: black; + color: silver; +} + +div.msie_hack +{ + text-align: center; +} + +em +{ + font-style: normal; + font-weight: bold; +} + +h1, h2 +{ + text-align: center; +} + +img +{ + border: none; +} + +p +{ + text-align: center; +} + +span.small +{ + font-size: smaller; +} + +table +{ + margin-left: auto; + margin-right: auto; +} + +td.bar img +{ + display: inline; +} + +td.bar.horizontal +{ + text-align: left; +} + +td.bar.vertical +{ + color: white; + background-color: transparent; + + padding: 0px; + + text-align: center; + vertical-align: bottom; +} + +td.counter +{ + color: silver; + background-color: #333333; + font-size: x-small; + text-align: center; +} + +td.numeration +{ + color: black; + background-color: silver; + font-weight: bold; + text-align: center; +} + +/* + * Plugins + */ +table.hours tr.bars +{ + height: 150px; +} + +table.hours img +{ + width: 15px; +} + +/* * * */ + +table.big_ranking td.bar img +{ + height: 15px; +} + +table.big_ranking td.image +{ + padding: 1px; +} + +table.big_ranking td.image img +{ + margin: 0px; + display: block; + width: 50px; + height: 50px; +} + +/* * * */ + +table.weekdays img +{ + width: 10px; +} + +table.weekdays tr.bars +{ + height: 100px; +} + +/* * * */ + +table.longterm img +{ + width: 5px; +} + +table.longterm tr.bars +{ + height: 100px; +} + +/* * * */ + +table.conversations +{ + border-collapse: collapse; +} + +table.conversations td +{ + width: 50%; +} + +table.conversations td.bar img +{ + display: inline; + height: 5px; +} + +table.conversations td.left +{ + text-align: right; +} + +table.conversations td.nick +{ + border-top: 2px solid black; +} + +table.conversations td.right +{ + text-align: left; +} + +/* * * */ + +table.copy +{ + width: 100%; + border-top: 1px solid silver; +} + +table.copy span.spam +{ + display: none; +} + +table.copy td +{ + background-color: transparent; + color: gray; + font-size: smaller; + width: 50%; +} + +table.copy td.right +{ + text-align: right; +} + +table.copy td a +{ + color: silver; + background-color: transparent; +} + +table.legend +{ + width: 500px; +} + +table.legend img +{ + display: inline; +} + +table.legend td +{ + background-color: transparent; + color: silver; + text-align: center; + width: 125px; + font-size: smaller; +} + +table.plugin +{ + width: 500px; + margin-top: 20px; + margin-bottom: 10px; +} + +/* Plugin: Userdetails */ + +table.userdetails +{ + border-collapse: collapse; +} + +table.userdetails th.nick +{ + border-top: 2px solid black; + border-bottom: 2px solid black; +} + +table.userdetails td +{ + vertical-align: top; +} + +table.userdetails td.image +{ + padding: 1ex; +} + +table.userdetails td.image img +{ + width: 50px; + height: 50px; +} + +table.userdetails table.conversations +{ + margin-right: auto; + margin-left: 0px; +} + +table.userdetails table.conversations img +{ + height: 5px; +} + +table.userdetails table.conversations td.bar, +table.userdetails table.conversations td.nick +{ + border-top: 2px solid #3b3b3b; +} + +table.userdetails table.hours img, +table.userdetails table.weekdays img, +table.userdetails table.longterm img +{ + width: 5px; +} + +table.userdetails table.hours tr.bars, +table.userdetails table.weekdays tr.bars, +table.userdetails table.longterm tr.bars +{ + height: 75px; +} + +/* End of plugin Userdetails */ + +td +{ + background-color: #333333; + color: silver; + text-align: left; + padding-left: 0.3ex; + padding-right: 0.3ex; +} + +td.numeration +{ + background-color: silver; + color: black; + width: 15px; + font-weight: bold; + text-align: center; +} + +td.image +{ + padding: 0px; + vertical-align: top; +} + +td.image img +{ + width: auto; + height: auto; + max-width: 50px; + max-height: 50px; + margin: 0px; +} + +td.invis +{ + background-color: transparent; + color: black; +} + +th +{ + background-color: silver; + color: black; + text-align: center; + font-weight: bold; + font-style: italic; +} diff --git a/reports/light-theme/style.css b/reports/light-theme/style.css index 8e2906a..997f70c 100644 --- a/reports/light-theme/style.css +++ b/reports/light-theme/style.css @@ -235,6 +235,14 @@ table.userdetails table.longterm tr.bars td.bar img width: 3px; } +table.userdetails table.conversations tr td +{ + color: black; + background-color: transparent; + + border: none; +} + table.userdetails td.image { vertical-align: top; @@ -373,8 +381,3 @@ th font-weight: bold; font-style: italic; } - -tr.hour_row td -{ - border: 1px solid gray; -} diff --git a/reports/liner-theme/style.css b/reports/liner-theme/style.css new file mode 100644 index 0000000..8c71815 --- /dev/null +++ b/reports/liner-theme/style.css @@ -0,0 +1,337 @@ +/* + * Layout by ``Liner'' (Mail unknown) + */ + +a +{ + color: #333399; + text-decoration: none; + font-weight: normal; +} + +a:hover +{ + text-decoration: underline; +} +a:visited +{ + font-weight: normal; +} +body +{ + background-color: #efefef; + color: black; + font-family: Helvetica, Verdana, Arial, sans-serif; + font-size: small; +} + +div.msie_hack +{ + text-align: center; +} + +em +{ + font-style: normal; + font-weight: Bold; +} + +h1, h2 +{ + font-size: large; +} + +img +{ + border: none; +} + +span.small +{ + font-size: smaller; +} + +table +{ + margin-left: auto; + margin-right: auto; +} + +table.big_ranking img +{ + height: 15px; + border: none; +} + +table.big_ranking td.bar +{ + font-size: smaller; +} + +table.big_ranking td.bar img.first +{ + border: none; +} + +table.big_ranking td.bar img.last +{ + border: none; +} + +table.big_ranking td.image img +{ + width: auto; + height: auto; + width: 50px; + height: 50px; + +} + +table.conversations +{ + border-collapse: collapse; +} + +table.conversations td +{ + width: 50%; +} + +table.conversations td.bar img +{ + display: inline; + height: 8px; +} + +table.conversations td.left +{ + text-align: right; +} + +table.conversations td.nick +{ + border-top: 2px solid #efefef; +} + +table.conversations td.right +{ + text-align: left; +} + +table.copy +{ + width: 100%; + border-top: 1px solid black; +} + +table.copy span.spam +{ + display: none; +} + +table.copy td +{ + background-color: transparent; + color: gray; + font-size: smaller; + width: 50%; +} + +table.copy td.right +{ + text-align: right; +} + +table.hours td +{ + text-align: center; +} + +table.hours td.counter +{ + font-size: x-small; +} + +table.hours tr.bars +{ + height: 130px; +} + +table.hours img +{ + width: 15px; +} + +table.legend +{ + width: 352px; + text-align: center; +} + +table.legend img +{ + display: inline; + width: 50px; + height: 15px; +} + +table.legend td +{ + background-color: transparent; + color: black; + width: 88px; + text-align: center; + font-size: smaller; +} + +table.plugin +{ + width: 74ex; + margin-top: 1em; + margin-bottom: 1em; +} + +table.userdetails +{ + border-collapse: collapse; +} + +table.userdetails table.conversations td.nick, +table.userdetails table.conversations td.bar +{ + border-top: 2px solid #efefef; +} + +table.userdetails td.convpartners, +table.userdetails td.counters, +table.userdetails td.numbers +{ + vertical-align: top; +} + +table.userdetails td.convpartners table +{ + margin-right: auto; + margin-left: 0px; +} + +table.userdetails td.convpartners td.bar img +{ + height: 8px; +} + +table.userdetails td.image +{ + vertical-align: top; + padding: 1ex; +} + +table.userdetails td.image img +{ + width: 50px; + height: 50px; +} + +table.userdetails th.nick +{ + border-top: 2px solid #efefef; + border-bottom: 2px solid #efefef; +} + +table.weekdays img +{ + width: 10px; +} + +table.weekdays tr.bars +{ + height: 100px; +} + +table.longterm img +{ + width: 5px; +} + +table.longterm tr.bars +{ + height: 100px; +} + +table.userdetails table.hours img, +table.userdetails table.weekdays img, +table.userdetails table.longterm img +{ + width: 5px; +} + +table.userdetails table.hours tr.bars, +table.userdetails table.weekdays tr.bars, +table.userdetails table.longterm tr.bars +{ + height: 75px; +} + +td +{ + background-color: #f8f8f8; + color: black; + text-align: left; +} + +td.bar.horizontal +{ + text-align: left; +} + +td.bar.vertical +{ + color: black; + background-color: transparent; + + padding: 0px; + + text-align: center; + vertical-align: bottom; +} + +td.bar img +{ + display: inline; +} + +td.counter +{ + font-size: x-small; + text-align: center; +} + +td.numeration +{ + color: black; + background-color: silver; + font-weight: bold; + text-align: center; +} + +td.invis +{ + background-color: transparent; + color: black; +} + +th +{ + background-color: silver; + color: black; + font-style: italic; + font-weight: bold; + font-style: italic; +} + +tr.hour_row td +{ + color: black; + background-color: #f8f8f8; + border: none; +} -- 2.11.0