summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/toaster/toastergui/static/css/default.css8
-rw-r--r--bitbake/lib/toaster/toastergui/templates/layerdetails.html2
2 files changed, 8 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/css/default.css b/bitbake/lib/toaster/toastergui/static/css/default.css
index a56bb8cbff..22510e8687 100644
--- a/bitbake/lib/toaster/toastergui/static/css/default.css
+++ b/bitbake/lib/toaster/toastergui/static/css/default.css
@@ -161,7 +161,13 @@ dd .glyphicon-edit { margin-left: 5px; }
161 161
162/* Style the forms and definition lists in the layer details pages */ 162/* Style the forms and definition lists in the layer details pages */
163#change-repo-form .form-control { width: 17em; } 163#change-repo-form .form-control { width: 17em; }
164#information { margin-bottom: 5em; }
164#information dd > form { margin-bottom: 5px; margin-top: 5px; } 165#information dd > form { margin-bottom: 5px; margin-top: 5px; }
166#edit-layer-source-form fieldset { margin-top: 20px; }
167#directory-info,
168#git-repo-info { margin-top: 20px; }
169#layer-dir-path-in-details { width: 55%; }
170.add-deps .form-control { width: 15em; }
165 171
166/* Style the forms and definition lists in the BitBake variables page */ 172/* Style the forms and definition lists in the BitBake variables page */
167.variable-list { margin-bottom: 20px; } 173.variable-list { margin-bottom: 20px; }
@@ -196,7 +202,7 @@ h2 { margin-bottom: 25px; }
196.tt-suggestion:active { background-color: #f5f5f5; cursor: pointer; } 202.tt-suggestion:active { background-color: #f5f5f5; cursor: pointer; }
197 203
198/* Style the import layer form controls*/ 204/* Style the import layer form controls*/
199legend { border: none; margin-top: 20px; } 205legend { border: none; }
200.radioLegend { margin-bottom: 0; } 206.radioLegend { margin-bottom: 0; }
201#layer-name-ctrl { margin-top: 20px; } 207#layer-name-ctrl { margin-top: 20px; }
202#import-layer-name, 208#import-layer-name,
diff --git a/bitbake/lib/toaster/toastergui/templates/layerdetails.html b/bitbake/lib/toaster/toastergui/templates/layerdetails.html
index 08e41ce75c..7dd0c47a9e 100644
--- a/bitbake/lib/toaster/toastergui/templates/layerdetails.html
+++ b/bitbake/lib/toaster/toastergui/templates/layerdetails.html
@@ -258,7 +258,7 @@
258 <span class="glyphicon glyphicon-question-sign get-help" title="Other layers this layer depends upon"></span> 258 <span class="glyphicon glyphicon-question-sign get-help" title="Other layers this layer depends upon"></span>
259 </h3> 259 </h3>
260 260
261 <ul class="list-unstyled current-value" id="layer-deps-list"> 261 <ul class="list-unstyled current-value lead" id="layer-deps-list">
262 {% for ld in layerversion.dependencies.all %} 262 {% for ld in layerversion.dependencies.all %}
263 <li data-layer-id="{{ld.depends_on.id}}"> 263 <li data-layer-id="{{ld.depends_on.id}}">
264 <a data-toggle="tooltip" title="{{ld.depends_on.layer.vcs_url}} | {{ld.depends_on.get_vcs_reference}}" href="{% url 'layerdetails' project.id ld.depends_on.id %}">{{ld.depends_on.layer.name}}</a> 264 <a data-toggle="tooltip" title="{{ld.depends_on.layer.vcs_url}} | {{ld.depends_on.get_vcs_reference}}" href="{% url 'layerdetails' project.id ld.depends_on.id %}">{{ld.depends_on.layer.name}}</a>