Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI for UI
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI Tools
CMS
Free Tools
Support and Learning
Docs & Resources
Productivity and Design Tools
Hi
How do you change the border ?
I've tried.. doesn't seem to work.
How can I make outset? and change the border color.. do it 'pops'?
thx in advance
.k-animation-container { border-radius: 2px 2px 2px 2px; border-color: blue; border-width: 2px; position: absolute; overflow: hidden; z-index: 100 }
Hello Jonathan,
I'd use my own Class and cascade trough it, something like:
<style> .my-custom-popup-border { border: 3px solid red; background: yellow; } </style> <TelerikAnimationContainer @ref="myPopupRef" Top="300px" Width="100px" Height="100px" AnimationType="AnimationType.ZoomOut" Class="my-custom-popup-border"> My content goes here. The "k-popup" class adds some background and borders which you can define through your own styles instead. </TelerikAnimationContainer> <TelerikButton OnClick="@ToggleContainer">Toggle Animation Container</TelerikButton> @code { Telerik.Blazor.Components.TelerikAnimationContainer myPopupRef; public void ToggleContainer() { myPopupRef.ToggleAsync(); } }
Regards, Marin Bratanov Progress Telerik