Skip to content

Commit

Permalink
0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
obra committed Dec 11, 2006
1 parent 7ed016f commit 5e6f527
Show file tree
Hide file tree
Showing 5 changed files with 93 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Changes
@@ -0,0 +1,6 @@
0.7

* improved CSS Styling for 3.6



10 changes: 10 additions & 0 deletions MANIFEST
@@ -1,21 +1,31 @@
Changes
html/Callbacks/ActivityReports/Elements/Header/1
html/Callbacks/ActivityReports/Elements/Header/Head
html/Callbacks/ActivityReports/Elements/Tabs/Default html/Callbacks/ActivityReports/Elements/Tabs/Default
html/Callbacks/ActivityReports/NoAuth/webrt.css/Default html/Callbacks/ActivityReports/NoAuth/webrt.css/Default
html/Callbacks/ActivityReports/Search/Results.html/SearchActions html/Callbacks/ActivityReports/Search/Results.html/SearchActions
html/Reports/Activity/ActivityDetail.html html/Reports/Activity/ActivityDetail.html
html/Reports/Activity/ActivitySummary.html html/Reports/Activity/ActivitySummary.html
html/Reports/Activity/Elements/ActivityDetail html/Reports/Activity/Elements/ActivityDetail
html/Reports/Activity/Elements/ActivitySummary
html/Reports/Activity/Elements/LimitReport html/Reports/Activity/Elements/LimitReport
html/Reports/Activity/Elements/MiniPlot html/Reports/Activity/Elements/MiniPlot
html/Reports/Activity/Elements/PrintFooter html/Reports/Activity/Elements/PrintFooter
html/Reports/Activity/Elements/PrintHeader html/Reports/Activity/Elements/PrintHeader
html/Reports/Activity/Elements/ResolutionComments
html/Reports/Activity/Elements/ResolutionStatistics
html/Reports/Activity/Elements/ScreenFooter html/Reports/Activity/Elements/ScreenFooter
html/Reports/Activity/Elements/ScreenHeader html/Reports/Activity/Elements/ScreenHeader
html/Reports/Activity/Elements/Tabs html/Reports/Activity/Elements/Tabs
html/Reports/Activity/Elements/WorkedStatistics
html/Reports/Activity/Elements/Wrapper html/Reports/Activity/Elements/Wrapper
html/Reports/Activity/index.html html/Reports/Activity/index.html
html/Reports/Activity/ResolutionComments.html html/Reports/Activity/ResolutionComments.html
html/Reports/Activity/ResolutionStatistics.html html/Reports/Activity/ResolutionStatistics.html
html/Reports/Activity/style.css
html/Reports/Activity/WorkedStatistics.html html/Reports/Activity/WorkedStatistics.html
html/Search/ActivityReport.html
html/Search/Elements/ActivityReport
inc/Module/Install.pm inc/Module/Install.pm
inc/Module/Install/Base.pm inc/Module/Install/Base.pm
inc/Module/Install/Can.pm inc/Module/Install/Can.pm
Expand Down
1 change: 1 addition & 0 deletions html/Callbacks/ActivityReports/Elements/Header/Head
@@ -0,0 +1 @@
<LINK REL="StyleSheet" HREF="<%$RT::WebPath%>/Reports/Activity/style.css" TYPE="text/css" MEDIA="screen">
75 changes: 75 additions & 0 deletions html/Reports/Activity/style.css
@@ -0,0 +1,75 @@
table.miniplot {
width: 100%;
border-collapse: collapse;
}
table.miniplot td {
margin: 0;
padding: 0;
border-bottom: 1px solid black;
}
table.miniplot .graph {
margin-left: auto;
margin-right: auto;
position: relative;
width: 60px;
}
table.miniplot .graph ul {
height: 100px;
margin: 0;
padding: 0;
}
table.miniplot .graph ul li {
list-style: none;
position: absolute;
bottom: 0px;
padding: 0 !important;
margin: 0 !important;
border-bottom: none;
}
table.miniplot .graph ul li .data {
display: none;
}

.miniplot .demoblock { margin: 0 10px; padding: 0 30px; }

.miniplot .c1 { border: 2px solid #990000; background: #ff0000; }
.miniplot .c2 { border: 2px solid #996600; background: #ff9900; }
.miniplot .c3 { border: 2px solid #009900; background: #00ff00; }
.miniplot .c4 { border: 2px solid #009999; background: #00ffff; }
.miniplot .c5 { border: 2px solid #000099; background: #0000ff; }
.miniplot .c6 { border: 2px solid #990099; background: #ff00ff; }
graph .c5 { border: 2px solid #000099; background: #0000ff; }
.graph .c6 { border: 2px solid #990099; background: #ff00ff; }

tr.titlerow th {
border-bottom: solid black 1px;
margin: 0;
font-size:80%;
text-wrap: none;
}

tr.grandtotal td, tr.grandtotal th{
border-top: 1px solid black;
}

th.label {
align: left;
}

table.miniplot th.legend {
font-style: normal;
font-size: 80%;
}

table.numberreport {
width: 100%;
}
table.numberreport td {
padding: 0 1em;
text-align: right;
}

<%init>
RT::Interface::Web::StaticFileHeaders();
$r->content_type('text/css');
</%init>
2 changes: 1 addition & 1 deletion lib/RT/Extension/ActivityReports.pm
@@ -1,3 +1,3 @@
package RT::Extension::ActivityReports; package RT::Extension::ActivityReports;


our $VERSION = '0.6'; our $VERSION = '0.7';

0 comments on commit 5e6f527

Please sign in to comment.