1

我想在 SQL SSRS 中格式化类,名称为sqlrv-WaitControlBackground.

我想居中,上位:

在此处输入图像描述

我设法在 Sharepoint CSS 中创建并添加sqlrv-WaitControlBackground具有属性的类:

在此处输入图像描述

.sqlrv-WaitControlBackground{
      margin: auto;
      width: 30%;
 }

但它运作不佳。我想增加顶部的位置,但它不起作用。

4

1 回答 1

1

我有自己的样式表 - 从我添加到链接的共享点:&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; 
}

我希望这个能帮上忙!

于 2018-03-19T11:47:08.017 回答