diff options
author | Belen Barros Pena <belen.barros.pena@linux.intel.com> | 2014-11-13 11:16:56 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-21 11:49:24 +0000 |
commit | f3ffeba4a7dc704258a18f64edd787f6cd65e64f (patch) | |
tree | 0b42c3cd1d432eff0d73372911b9181a553515d3 /bitbake/lib | |
parent | 57b8ccc67057f822470dd9de069ffd981f4f010a (diff) | |
download | poky-f3ffeba4a7dc704258a18f64edd787f6cd65e64f.tar.gz |
bitbake: toaster: fix dependencies dialog layout
Remove the bottom margin of forms inside dependencies
modal dialogs.
(Bitbake rev: dc9b4a4ab06ed49f3fcab4f644b8bc136f19fdb0)
Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com>
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/toaster/toastergui/static/css/default.css | 3 | ||||
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/layers.html | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/css/default.css b/bitbake/lib/toaster/toastergui/static/css/default.css index 902a2bd034..dcb8e34ac3 100644 --- a/bitbake/lib/toaster/toastergui/static/css/default.css +++ b/bitbake/lib/toaster/toastergui/static/css/default.css | |||
@@ -136,6 +136,9 @@ select { width: auto; } | |||
136 | .new-build .alert { margin-top: 10px; } | 136 | .new-build .alert { margin-top: 10px; } |
137 | .new-build .alert p { margin-top: 10px; } | 137 | .new-build .alert p { margin-top: 10px; } |
138 | 138 | ||
139 | /* Remove bottom margin for forms inside modal dialogs */ | ||
140 | #dependencies_modal_form { margin-bottom: 0px; } | ||
141 | |||
139 | /* Configuration styles */ | 142 | /* Configuration styles */ |
140 | .icon-trash { color: #B94A48; font-size: 16px; padding-left: 2px; } | 143 | .icon-trash { color: #B94A48; font-size: 16px; padding-left: 2px; } |
141 | .icon-trash:hover { color: #943A38; text-decoration: none; cursor: pointer; } | 144 | .icon-trash:hover { color: #943A38; text-decoration: none; cursor: pointer; } |
diff --git a/bitbake/lib/toaster/toastergui/templates/layers.html b/bitbake/lib/toaster/toastergui/templates/layers.html index e9f910fa5a..4e923326c8 100644 --- a/bitbake/lib/toaster/toastergui/templates/layers.html +++ b/bitbake/lib/toaster/toastergui/templates/layers.html | |||
@@ -89,7 +89,7 @@ | |||
89 | 89 | ||
90 | <!-- 'Layer dependencies modal' --> | 90 | <!-- 'Layer dependencies modal' --> |
91 | <div id="dependencies_modal" class="modal hide fade" tabindex="-1" role="dialog" aria-hidden="true"> | 91 | <div id="dependencies_modal" class="modal hide fade" tabindex="-1" role="dialog" aria-hidden="true"> |
92 | <form id="dependencies_modal_form" style="margin: 0px"> | 92 | <form id="dependencies_modal_form"> |
93 | <div class="modal-header"> | 93 | <div class="modal-header"> |
94 | <button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button> | 94 | <button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button> |
95 | <h3><span class="layer-name"></span> dependencies</h3> | 95 | <h3><span class="layer-name"></span> dependencies</h3> |