bitbake: toastergui: Silly UI fixes

Small fixes to the UI of the project.html and targets.html templates.

In project.html:

* Remove some inline styles and replace them with declarations
in default.css

* Make sure that the 'add' and 'build' buttons in the project
configuration areas have nice, rounded corners

* Add some space between the machine name and the change icon

* Remove the input-prepend class from the build form (we don't
need it)

* Apply the success class to target names in completed builds

* Bold machine and project name in the change notifications to
match all other notifications

* There is a bug in Twitter Boostrap in tooltips inside buttons, so
moving the tooltip in the 'build' button outside the button tag

In targets.html, just add a missing space between the semicolon
and the first layer name in the add layer notification.

(Bitbake rev: 19113c4fe915be7db51ab06dfab5ea0797faea84)

Signed-off-by: Belen Barros <belen.barros.pena@intel.com>
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Belen Barros
2014-11-11 12:22:46 +00:00
committed by Richard Purdie
parent 3a338a2be7
commit 76f1800f11
4 changed files with 23 additions and 16 deletions

View File

@@ -477,13 +477,13 @@ projectApp.controller('prjCtrl', function($scope, $modal, $http, $interval, $loc
var oldLayers = [];
switch(elementid) {
case '#select-machine':
alertText = "You have changed the machine to: <b>" + $scope.machineName + "</b>";
alertText = "You have changed the machine to: <strong>" + $scope.machineName + "</strong>";
alertZone = $scope.zone2alerts;
data['machineName'] = $scope.machineName;
break;
case '#change-project-name':
data['projectName'] = $scope.projectName;
alertText = "You have changed the project name to: <b>" + $scope.projectName + "</b>";
alertText = "You have changed the project name to: <strong>" + $scope.projectName + "</strong>";
alertZone = $scope.zone3alerts;
break;
case '#change-project-version':