From 1ea940f920371939527353061664b927243a7233 Mon Sep 17 00:00:00 2001 From: Michael Wood Date: Tue, 24 Feb 2015 17:20:54 +0000 Subject: bitbake: toaster: Add machine selection notification This adds a notification to the project page to notify users of the change in project configuration. (Bitbake rev: fa5343cf867586c0e42517dd2ed0ec5a4c28c408) Signed-off-by: Michael Wood Signed-off-by: Richard Purdie --- bitbake/lib/toaster/toastergui/static/css/default.css | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bitbake/lib/toaster/toastergui/static/css') diff --git a/bitbake/lib/toaster/toastergui/static/css/default.css b/bitbake/lib/toaster/toastergui/static/css/default.css index f97e6c4b76..277888bc0c 100644 --- a/bitbake/lib/toaster/toastergui/static/css/default.css +++ b/bitbake/lib/toaster/toastergui/static/css/default.css @@ -237,4 +237,10 @@ div.add-deps { margin-top: 15px; } .animate-repeat.ng-enter.ng-enter-active { opacity:1; } + +@keyframes machines-fade { 0% { background-color: #D9EDF7; } 25% { background-color: #D9EDF7; } 100% { background-color: white; } } +@-webkit-keyframes machines-fade { 0% { background-color: #D9EDF7; } 25% { background-color: #D9EDF7; } 100% { background-color: white; } } + +.machines-highlight { -webkit-animation: machines-fade 7s 1; -moz-animation: machines-fade 7s 1; animation: machines-fade 7s 1; } + .tab-pane table { margin-top: 10px; } -- cgit v1.2.3-54-g00ecf