mirror of
https://github.com/ansible/awx.git
synced 2026-03-14 07:27:28 -02:30
AC-963 fixed spinny not aligning with visible viewport, I think.
This commit is contained in:
@@ -148,7 +148,7 @@ textarea {
|
||||
/* Working... spinner */
|
||||
.spinny {
|
||||
display: none;
|
||||
position: absolute;
|
||||
position: fixed;
|
||||
z-index: 2000;
|
||||
width: 75px;
|
||||
height: 75px;
|
||||
|
||||
@@ -379,10 +379,7 @@ angular.module('Utilities',['RestServices', 'Utilities'])
|
||||
width: $('html').width(),
|
||||
height: $(document).height() + 200
|
||||
}).fadeIn();
|
||||
$('.spinny').css({
|
||||
top: y,
|
||||
left: x
|
||||
}).fadeIn(400);
|
||||
$('.spinny').css({ top: y, left: x }).fadeIn(400);
|
||||
}
|
||||
else if (directive == 'stop' && $rootScope.waiting){
|
||||
$('.spinny, .overlay').fadeOut(400, function(){ $rootScope.waiting = false; });
|
||||
|
||||
Reference in New Issue
Block a user