Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/angular/32.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
更改SQL Server Reporting Services中的css CLA_Css_Sharepoint_Reporting Services_Ssrs 2012_Reporting Services 2012 - Fatal编程技术网

更改SQL Server Reporting Services中的css CLA

更改SQL Server Reporting Services中的css CLA,css,sharepoint,reporting-services,ssrs-2012,reporting-services-2012,Css,Sharepoint,Reporting Services,Ssrs 2012,Reporting Services 2012,我想格式化SQL SSRS中的类,它的名称是sqlrv WaitControlBackground 我想要居中,和上面的位置: 我设法在Sharepoint CSS中创建并添加了类sqlrv WaitControlBackground,其中包含以下属性: 但效果不太好。我想增加顶部的位置,但它不起作用。我有自己的样式表-从sharepoint添加到链接:&rc:stylesheet=myStyle 我使用它是因为参数区域太宽: .ParametersFrame { backgroun

我想格式化SQL SSRS中的类,它的名称是
sqlrv WaitControlBackground

我想要居中,和上面的位置:

我设法在Sharepoint CSS中创建并添加了类
sqlrv WaitControlBackground
,其中包含以下属性:


但效果不太好。我想增加顶部的位置,但它不起作用。

我有自己的样式表-从sharepoint添加到链接:&rc:stylesheet=myStyle

我使用它是因为参数区域太宽:

.ParametersFrame
{
    background-color:#FFFFFF;   
    border: 0px solid #a4b7d8;
    width: 830px;
}
等待控件的样式由anothed类覆盖-您可以在DOM资源管理器(IE F12)中查看此样式,但您可以使此设置变得如此重要:

.WaitControlBackground
{
    cursor: wait;
    padding: 15px;
    background-color: #ebf3ff;
    border: 1px solid #a4b7d8;
    left: 300px !important; 
}
我希望这会有帮助

.WaitControlBackground
{
    cursor: wait;
    padding: 15px;
    background-color: #ebf3ff;
    border: 1px solid #a4b7d8;
    left: 300px !important; 
}