1
0
mirror of https://github.com/agdsn/ancient-weatherstation.git synced 2026-06-19 23:07:59 +00:00

charts in webfrontend improved

reports added to Webfrontend

git-svn-id: file:///home/jan/tmp/wetterstation/trunk@116 dd492736-c11a-0410-ad51-8c26713eaf7f
This commit is contained in:
losinshi
2006-09-19 02:23:24 +00:00
parent ae1336bec3
commit 04e4bcd3a4
19 changed files with 368 additions and 26 deletions
+49 -7
View File
@@ -3,7 +3,7 @@ body {
padding-bottom: 150px;
}
div.module, div.chart {
div.module, div.chart, div.report {
border-color: #006600;
border-style: solid;
border-width: 1px;
@@ -32,7 +32,7 @@ div.module table tr td.mod_line_val {
color: #776666;
}
div.module h3.mod_headline {
div.module h3.mod_headline, div.report h3.report_head, div.chart h3.chart_headline {
margin-top:2px;
margin-left:2px;
margin-bottom: 5px;
@@ -50,7 +50,7 @@ div.module h4.mod_subhead {
color: #444444;
}
div.module div.mod_subsec {
div.module div.mod_subsec, div.report div.rpt_subsec {
border-color: #D0B080;
border-style: dotted;
border-width: 1px;
@@ -78,20 +78,25 @@ div.module p.mod_description {
font-size: 10pt;
}
div.module div.mod_subsec div.chart_link_div a.chart_link {
div.module div.mod_subsec div.chart_link_div{
display: inline;
}
div.module div.mod_subsec div.chart_link_div a.chart_link, div.module div.mod_subsec div.report_link_div a.report_link {
color: #666666;
font-weight: 300;
font-weight: 600;
text-decoration: none;
position: relative;
display: inline;
}
div.module div.mod_subsec div.chart_link_div a.chart_link p.chart_link_desc{
div.module div.mod_subsec div.chart_link_div a.chart_link p.chart_link_desc, div.module div.mod_subsec div.report_link_div a.report_link p.report_link_desc {
visibility: hidden;
position: absolute;
top: -100px;
}
div.module div.mod_subsec div.chart_link_div a.chart_link:hover p.chart_link_desc {
div.module div.mod_subsec div.chart_link_div a.chart_link:hover p.chart_link_desc, div.module div.mod_subsec div.report_link_div a.report_link:hover p.report_link_desc {
top: 5px;
left: 5px;
visibility: visible;
@@ -141,3 +146,40 @@ overflow:auto;
width: 820px;
}
div.report {
width:400px;
}
div.report div.rpt_subsec {
width:350px;
padding: 10px
}
div.report div.rpt_subsec table.report_table {
width: 100%;
}
div.report div.rpt_subsec table.report_table tr.report_line td {
padding:2px;
padding-left:5px;
padding-right:5px;
}
div.report div.rpt_subsec table.report_table tr.report_head {
background: #FFb696;
}
div.report div.rpt_subsec table.report_table tr.report_line td.report_val {
text-align:right;
}
div.report div.rpt_subsec table.report_table tr.report_line {
background: #FDDDAD;
}
div.report div.rpt_subsec table.report_table tr.report_line:hover {
background: #FFb696;
}