summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-08-10 22:41:30 +0200
committerDave Lawrence <dlawrence@mozilla.com>2012-08-10 22:41:30 +0200
commit2aef9f30a01b18468ce4ff7f0865a3caec4c87b8 (patch)
treea27f7b9fc2ba207d4eecb3d84af61f9616ea8c97 /extensions
parentfa6a04cf74404946ceb71c055c152b7859c5a65a (diff)
downloadbugzilla-2aef9f30a01b18468ce4ff7f0865a3caec4c87b8.tar.gz
bugzilla-2aef9f30a01b18468ce4ff7f0865a3caec4c87b8.tar.xz
small changes to Product Dashboard
Diffstat (limited to 'extensions')
-rw-r--r--extensions/ProductDashboard/template/en/default/pages/productdashboard.html.tmpl12
-rw-r--r--extensions/ProductDashboard/web/styles/productdashboard.css15
2 files changed, 23 insertions, 4 deletions
diff --git a/extensions/ProductDashboard/template/en/default/pages/productdashboard.html.tmpl b/extensions/ProductDashboard/template/en/default/pages/productdashboard.html.tmpl
index e74e8040c..9f537636f 100644
--- a/extensions/ProductDashboard/template/en/default/pages/productdashboard.html.tmpl
+++ b/extensions/ProductDashboard/template/en/default/pages/productdashboard.html.tmpl
@@ -139,16 +139,22 @@
<input type="submit" value="[% IF product %]Change[% ELSE %]Submit[% END %]">
[% IF product %]
- <h2>[% product.name FILTER html %]</h2>
+ <div class="product_name">
+ [% product.name FILTER html %]
+ </div>
- <p><i>[% product.description FILTER none %]</i></p>
+ <div class="product_description">
+ [% product.description FILTER none %]
+ </div>
[% WRAPPER global/tabs.html.tmpl
tabs = tabs
current_tab = current_tab
%]
- <h3>[% current_tab.label FILTER html %]</h3>
+ <div class="current_tab_label">
+ [% current_tab.label FILTER html %]
+ </div>
[% IF current_tab.name == 'summary' %]
[% PROCESS pages/productdashboard/summary.html.tmpl %]
diff --git a/extensions/ProductDashboard/web/styles/productdashboard.css b/extensions/ProductDashboard/web/styles/productdashboard.css
index 8f431006a..1e821fa11 100644
--- a/extensions/ProductDashboard/web/styles/productdashboard.css
+++ b/extensions/ProductDashboard/web/styles/productdashboard.css
@@ -7,6 +7,19 @@
#product_dashboard_links {
float: right;
- border: 1px solid;
padding-right: 25px;
+ border: 1px solid rgb(116, 126, 147);
+}
+
+.product_name {
+ font-size: 2em;
+ margin: 10px 0 10px 0;
+ color: rgb(109, 117, 129);
+}
+
+.product_description {
+ font-size: 90%;
+ font-style: italic;
+ padding-bottom: 5px;
+ margin-bottom: 10px;
}