Breadcrumb list items were wrapping because the content attribute was set to an empty string that added a space. The correct way to override the content property is setting it to 'none'. Removing the extra space required adjustments to the breadcrumb padding.
The commit also does a bit of reorg in the css declarations. Signed-off-by: Belen Barros Pena <[email protected]> --- .../toaster/toastergui/static/css/bootstrap3-transition.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bitbake/lib/toaster/toastergui/static/css/bootstrap3-transition.css b/bitbake/lib/toaster/toastergui/static/css/bootstrap3-transition.css index 6031e2b..250ac00 100644 --- a/bitbake/lib/toaster/toastergui/static/css/bootstrap3-transition.css +++ b/bitbake/lib/toaster/toastergui/static/css/bootstrap3-transition.css @@ -34,6 +34,10 @@ ul.configuration-list { margin-left: 0px; } +.configuration-list .checkbox { + margin-top: 0; +} + /* Breadcrumbs */ .breadcrumb { @@ -41,16 +45,12 @@ ul.configuration-list { } .breadcrumb > li + li::before { - content: ""; + content: none; } .breadcrumb .divider { color: #999; - padding-left: 10px; -} - -.configuration-list .checkbox { - margin-top: 0; + padding: 0 5px; } /* Remove the hovering from the .btn-primary buttons when they are disabled */ -- 1.9.1 -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
