summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/recipe.html
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2015-01-14 17:27:00 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-01-29 22:11:34 +0000
commit24979f5219bbda94609761418be0db03a3132a2b (patch)
tree59930356ac4717654c8490f1df343bf5650b7b1f /bitbake/lib/toaster/toastergui/templates/recipe.html
parenta11a34c60f2783063fbfe7be1712dde2006c3d76 (diff)
downloadpoky-24979f5219bbda94609761418be0db03a3132a2b.tar.gz
bitbake: toaster: apply common styles to right hand column of detail pages
Layer, recipe and package details pages have a right column with additional information. This commit standardises the formatting of the content in that right column across all these pages by creating a new css class .item-info in default.css (Bitbake rev: aed92feac017c967834575344faa3bad7a905b18) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/recipe.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/recipe.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/recipe.html b/bitbake/lib/toaster/toastergui/templates/recipe.html
index b20c65e3c8..d91768df3b 100644
--- a/bitbake/lib/toaster/toastergui/templates/recipe.html
+++ b/bitbake/lib/toaster/toastergui/templates/recipe.html
@@ -250,14 +250,14 @@
250 250
251<div class="row span4 well"> 251<div class="row span4 well">
252 <h2>About {{object.name}}</h2> 252 <h2>About {{object.name}}</h2>
253 <dl> 253 <dl class="item-info">
254 {% if object.summary %} 254 {% if object.summary %}
255 <dt>Summary</dt> 255 <dt>Summary</dt>
256 <dd><p>{{object.summary}}</p></dd> 256 <dd>{{object.summary}}</dd>
257 {% endif %} 257 {% endif %}
258 {% if object.description %} 258 {% if object.description %}
259 <dt>Description</dt> 259 <dt>Description</dt>
260 <dd><p>{{object.description}}</dd> 260 <dd>{{object.description}}</dd>
261 {% endif %} 261 {% endif %}
262 {% if object.homepage %} 262 {% if object.homepage %}
263 <dt>Homepage</dt> 263 <dt>Homepage</dt>