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.
Telerik
Build great .NET business apps
Net Web
Cross-Platform
Desktop
Reporting and Documents
Testing & Mocking
Debugging
Build JavaScript UI
Javascript
AI for Developers & IT
Ensure AI program success
AI Coding
Additional Tools
Enhance the developer and designer experience
UI/UX Tools
Free Tools
CMS
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