summaryrefslogtreecommitdiffstats
path: root/skins
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-08-12 12:11:10 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2012-08-12 12:11:10 +0200
commit8a17e45f7e56967069dc33440f90ffc4ab9a5131 (patch)
tree465a76f23e274ba317243dec4e7330d24e2d0e59 /skins
parenta05220de2e69d4b6ef212d1f3556fa848b6e1508 (diff)
downloadbugzilla-8a17e45f7e56967069dc33440f90ffc4ab9a5131.tar.gz
bugzilla-8a17e45f7e56967069dc33440f90ffc4ab9a5131.tar.xz
Bug 746947: Determine the size of the images dynamically for graphical reports
r=dkl a=LpSolit
Diffstat (limited to 'skins')
-rw-r--r--skins/standard/IE-fixes.css4
-rw-r--r--skins/standard/reports.css25
2 files changed, 29 insertions, 0 deletions
diff --git a/skins/standard/IE-fixes.css b/skins/standard/IE-fixes.css
index 9574d5f9e..65f33a637 100644
--- a/skins/standard/IE-fixes.css
+++ b/skins/standard/IE-fixes.css
@@ -52,3 +52,7 @@ form#Create #comp_desc {
/* color:inherit */
color: expression(this.parentNode.currentStyle['color']);
}
+
+#graphical_report {
+ width: auto\9; /* IE6-8 */
+}
diff --git a/skins/standard/reports.css b/skins/standard/reports.css
index 065fe72bb..97ef316ba 100644
--- a/skins/standard/reports.css
+++ b/skins/standard/reports.css
@@ -77,3 +77,28 @@
padding-bottom: .5em;
color: #333;
}
+
+.t1 {
+ background-color: #ffffff; /* white */
+}
+
+.t2 {
+ background-color: #dfefff; /* light blue */
+}
+
+.t3 {
+ background-color: #dddddd; /* grey */
+}
+
+.t4 {
+ background-color: #c3d3ed; /* darker blue */
+}
+
+.ttotal, .ttotal td {
+ background-color: #cfffdf; /* light green */
+}
+
+#graphical_report {
+ max-width: 100%;
+ height: auto;
+}