1

I want to format class in SQL SSRS, which name is sqlrv-WaitControlBackground.

I want to center, and upper position:

enter image description here

I managed to create in Sharepoint CSS and add class sqlrv-WaitControlBackground with properties:

enter image description here

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

But it's not working well. I want to increase the position on top, but its not working.

m00am
  • 5,910
  • 11
  • 53
  • 69
Amoniacik
  • 21
  • 4

1 Answers1

1

I have my own stylesheet - from sharepoint I add to link: &rc:Stylesheet=myStyle

I use it because parameters area is too wide:

.ParametersFrame
{
    background-color:#FFFFFF;   
    border: 0px solid #a4b7d8;
    width: 830px;
}

Style of Wait control is overrided by anothed classes - you can view this in DOM Explorer (IE F12), but you could make this setting important like this:

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

I hope this will help!

czang
  • 81
  • 3