angular2-busy icon indicating copy to clipboard operation
angular2-busy copied to clipboard

How to place busy at custom position

Open ashkrit opened this issue 8 years ago • 1 comments

i want to put busy icon at different place based on screen ,so I used wrapperClass attribute to override the custom CSS.

BusyModule.forRoot(new BusyConfig({ message: 'Please wait...??????', backdrop: true, delay: 200, minDuration: 600, wrapperClass:'ng-busy2' }))

This custom class is copy of ng2-busy with top attribute changed for ng-busy2-default-spinner class.

.ng-busy2-default-spinner div { position: absolute; left: 44.5%; top: 0%; width: 10%; height: 26%; background: #666; border-radius: 50px; box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); opacity: 0; -webkit-animation: busy-spinner-anim 1s linear infinite; animation: busy-spinner-anim 1s linear infinite; }

Why this is not getting picked up.

ashkrit avatar Feb 21 '17 04:02 ashkrit

@ashkrit Were you able to override the styling?

singhrasster avatar Nov 18 '17 03:11 singhrasster