summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static/css/default.css
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2014-11-07 13:26:45 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-11-12 17:04:49 +0000
commit7b65fa9bbbee2843e10cf8b8ba8128912100a345 (patch)
tree7ef9b0d29756f4da2e4a3bb0faa660e469d9d883 /bitbake/lib/toaster/toastergui/static/css/default.css
parentabf7551f60cd56129b9abc22730f45e336ece582 (diff)
downloadpoky-7b65fa9bbbee2843e10cf8b8ba8128912100a345.tar.gz
bitbake: toastergui: changes for the Project page, round 3 of reviews
This patch implements the round 3 of reviews for the Project page, including fixing the time display, fixing the build list display, with fade-in and fade-out animations, and various small layout fixes. [YOCTO #6587] [YOCTO #6731] (Bitbake rev: 09e3ba8f800a03de731b022543cae33a46be17ef) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/static/css/default.css')
-rw-r--r--bitbake/lib/toaster/toastergui/static/css/default.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/css/default.css b/bitbake/lib/toaster/toastergui/static/css/default.css
index fb20fc9241..da9697c408 100644
--- a/bitbake/lib/toaster/toastergui/static/css/default.css
+++ b/bitbake/lib/toaster/toastergui/static/css/default.css
@@ -113,6 +113,9 @@ select { width: auto; }
113.top-air { margin-top: 40px;} 113.top-air { margin-top: 40px;}
114.progress { margin-bottom: 0px; } 114.progress { margin-bottom: 0px; }
115.lead .badge { font-size: 18px; font-weight: normal; border-radius: 15px; padding: 9px; } 115.lead .badge { font-size: 18px; font-weight: normal; border-radius: 15px; padding: 9px; }
116.lead ol > li, .lead ul > li {
117 line-height: 35px;
118}
116.well > .lead, .alert .lead { margin-bottom: 0px; } 119.well > .lead, .alert .lead { margin-bottom: 0px; }
117.well-transparent { background-color: transparent; } 120.well-transparent { background-color: transparent; }
118.no-results { margin: 10px 0; } 121.no-results { margin: 10px 0; }
@@ -191,3 +194,27 @@ dd > span { line-height: 20px; }
191.new-build form { margin: 5px 0 0; } 194.new-build form { margin: 5px 0 0; }
192.new-build .input-append { margin-bottom: 0; } 195.new-build .input-append { margin-bottom: 0; }
193#build-selected { margin-top: 15px; } 196#build-selected { margin-top: 15px; }
197
198
199.animate-repeat {
200 list-style:none;
201 box-sizing:border-box;
202}
203
204.animate-repeat.ng-move,
205.animate-repeat.ng-enter,
206.animate-repeat.ng-leave {
207 -webkit-transition:all linear 0.5s;
208 transition:all linear 0.5s;
209}
210
211.animate-repeat.ng-leave.ng-leave-active,
212.animate-repeat.ng-move,
213.animate-repeat.ng-enter {
214 opacity:0;
215}
216
217.animate-repeat.ng-leave,
218.animate-repeat.ng-enter.ng-enter-active {
219 opacity:1;
220}