在 SQL Server Reporting Services 中更改 css 类
Change css clas in SQL Server Reporting Services
我想在 SQL SSRS 中格式化 class,名称为 sqlrv-WaitControlBackground
。
我要居中,上位:
我设法在 Sharepoint CSS 中创建并添加 class sqlrv-WaitControlBackground
属性:
.sqlrv-WaitControlBackground{
margin: auto;
width: 30%;
}
但效果不佳。我想增加顶部的位置,但它不起作用
我有自己的样式表 - 从我添加到 link 的共享点:&rc:Stylesheet=myStyle
我用它是因为参数区太宽了:
.ParametersFrame
{
background-color:#FFFFFF;
border: 0px solid #a4b7d8;
width: 830px;
}
等待控件的样式被另一个 类 覆盖 - 您可以在 DOM Explorer (IE F12) 中查看它,但您可以像这样使此设置变得重要:
.WaitControlBackground
{
cursor: wait;
padding: 15px;
background-color: #ebf3ff;
border: 1px solid #a4b7d8;
left: 300px !important;
}
希望对您有所帮助!
我想在 SQL SSRS 中格式化 class,名称为 sqlrv-WaitControlBackground
。
我要居中,上位:
我设法在 Sharepoint CSS 中创建并添加 class sqlrv-WaitControlBackground
属性:
.sqlrv-WaitControlBackground{
margin: auto;
width: 30%;
}
但效果不佳。我想增加顶部的位置,但它不起作用
我有自己的样式表 - 从我添加到 link 的共享点:&rc:Stylesheet=myStyle
我用它是因为参数区太宽了:
.ParametersFrame
{
background-color:#FFFFFF;
border: 0px solid #a4b7d8;
width: 830px;
}
等待控件的样式被另一个 类 覆盖 - 您可以在 DOM Explorer (IE F12) 中查看它,但您可以像这样使此设置变得重要:
.WaitControlBackground
{
cursor: wait;
padding: 15px;
background-color: #ebf3ff;
border: 1px solid #a4b7d8;
left: 300px !important;
}
希望对您有所帮助!