I have the following TelerikLoaderContainer definition with a custom GIF:
When the value IsBusy runs, I see my gif inside a small white box. Instead, I'd like to change the "gray" color that, I assume, is defined by changing the zindex layer's transparency value to a lesser value.
How do I change this to show just the IsBusy.gif? E.g. I don't want the background to be "gray" or I want to change it to a different "light gray" value when it runs.
<TelerikLoaderContainer Visible="@IsBusy">
<Template>
<div style="background:white;color:black;padding:1em;">
<img src="/images/IsBusyV1.gif"
width="100" height="100" alt="loading animation" />
</div>
</Template>
</TelerikLoaderContainer>
When the value IsBusy runs, I see my gif inside a small white box. Instead, I'd like to change the "gray" color that, I assume, is defined by changing the zindex layer's transparency value to a lesser value.
How do I change this to show just the IsBusy.gif? E.g. I don't want the background to be "gray" or I want to change it to a different "light gray" value when it runs.