diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/toaster/toastergui/static/css/default.css | 1 | ||||
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/base.html | 8 |
2 files changed, 6 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/css/default.css b/bitbake/lib/toaster/toastergui/static/css/default.css index e252dc1006..9723db36d0 100644 --- a/bitbake/lib/toaster/toastergui/static/css/default.css +++ b/bitbake/lib/toaster/toastergui/static/css/default.css | |||
@@ -216,6 +216,7 @@ dl textarea { resize: vertical; } | |||
216 | .tooltip-inner { max-width: 250px; } | 216 | .tooltip-inner { max-width: 250px; } |
217 | .new-build { padding: 20px; } | 217 | .new-build { padding: 20px; } |
218 | .new-build li { line-height: 30px; } | 218 | .new-build li { line-height: 30px; } |
219 | .new-build li .alert { line-height: 20px; width: 200px; white-space: normal; } | ||
219 | .new-build h6 { margin: 10px 0 0 0; color: #5a5a5a; } | 220 | .new-build h6 { margin: 10px 0 0 0; color: #5a5a5a; } |
220 | .new-build h3 { margin: 0; color: #5a5a5a; } | 221 | .new-build h3 { margin: 0; color: #5a5a5a; } |
221 | .new-build form { margin: 5px 0 0; } | 222 | .new-build form { margin: 5px 0 0; } |
diff --git a/bitbake/lib/toaster/toastergui/templates/base.html b/bitbake/lib/toaster/toastergui/templates/base.html index 0b93bb3dde..640bc47bcc 100644 --- a/bitbake/lib/toaster/toastergui/templates/base.html +++ b/bitbake/lib/toaster/toastergui/templates/base.html | |||
@@ -148,9 +148,11 @@ | |||
148 | <p><a id="view-all-projects" href="{% url 'all-projects' %}">View all projects</a></p> | 148 | <p><a id="view-all-projects" href="{% url 'all-projects' %}">View all projects</a></p> |
149 | </form> | 149 | </form> |
150 | </li> | 150 | </li> |
151 | <li style="display: none"> | 151 | <li> |
152 | This project's configuration is incomplete,<br/>so you cannot run builds.<br/> | 152 | <div class="alert" style="display:none;"> |
153 | <p><a href="{% if project.id %}{% url 'project' project.id %}{% endif %}">View project configuration</a></p> | 153 | <p>This project configuration is incomplete, so you cannot run builds.</p> |
154 | <p><a href="{% if project.id %}{% url 'project' project.id %}{% endif %}">View project configuration</a></p> | ||
155 | </div> | ||
154 | </li> | 156 | </li> |
155 | <li id="targets-form"> | 157 | <li id="targets-form"> |
156 | <h6>Recipe(s):</h6> | 158 | <h6>Recipe(s):</h6> |