Hi,
I am using StiMvcViewer(2013.2) to render a report in my ASP.NET application. I found that tool bar icons are render with padding on left and right sides, that makes all icons shrinked.
tool bar icons' size are not right
tool bar icons' size are not right
- Attachments
-
- Untitled.png (113.74 KiB) Viewed 1307 times
Re: tool bar icons' size are not right
Hello,
Most likely, in your styles defined global style for all images. Please try to add the following style to your project:
Thank you.
Most likely, in your styles defined global style for all images. Please try to add the following style to your project:
Code: Select all
@Html.Stimulsoft().RenderMvcViewerScripts()
<style>
#MvcViewer img {
padding: 0;
}
</style>
Re: tool bar icons' size are not right
It seems that Bootstrap style was interfering with the tool bar style. I have to use "padding: 0!important;" to fix the icon issues.
Thanks.
Thanks.
Re: tool bar icons' size are not right
Hello,
Thanks for the comment. We will try to override these styles in MvcViewer controls.
Thank you.
Thanks for the comment. We will try to override these styles in MvcViewer controls.
Thank you.