diff options
Diffstat (limited to 'extensions/ProductDashboard')
-rw-r--r-- | extensions/ProductDashboard/template/en/default/pages/productdashboard.html.tmpl | 12 | ||||
-rw-r--r-- | extensions/ProductDashboard/web/styles/productdashboard.css | 15 |
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; } |