Jump to content

Customizing UnimPanel with CSS


Fábio Matte

Recommended Posts

What about cls/bodyCls...

 

... www/css/customcss.css

.AbasteceTitPanel {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  padding: 5px;
  border: none;
  background: -webkit-linear-gradient(-90deg, rgba(242,157,140,1) 0, rgba(242,121,96,1) 100%);
  background: -moz-linear-gradient(180deg, rgba(242,157,140,1) 0, rgba(242,121,96,1) 100%);
  background: linear-gradient(180deg, rgba(242,157,140,1) 0, rgba(242,121,96,1) 100%);
  background-repeat: repeat-x;
  background-position: 100% 100%;
  -webkit-background-origin: padding-box;
  background-origin: padding-box;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-background-size: auto auto;
  background-size: auto auto;
  -webkit-box-shadow: 5px 5px 8px 2px rgba(0,0,0,0.4) ;
  box-shadow: 5px 5px 8px 2px rgba(0,0,0,0.4) ;
}
Link to comment
Share on other sites

.FormsPanelsPadrao1{

background: #628290 !important; /**/

padding: 6px 0px 6px 0px; /* espaços top right bottom left */

 

color:#ffffff !important;

-webkit-text-fill-color:#ffffff !important;

font: 14px Tahoma, Helvetica, sans-serif !important;

font-weight:bold !important;

}

 


CSS above works.

 

I just could not get the "text-align: left;"

Link to comment
Share on other sites

Hi,

 

 

.FormsPanelsPadrao1{
background: #628290 !important; /**/
padding: 6px 0px 6px 0px; /* espaços top right bottom left */
 
color:#ffffff !important;
-webkit-text-fill-color:#ffffff !important;
font: 14px Tahoma, Helvetica, sans-serif !important;
font-weight:bold !important;
}
 
CSS above works.
 
I just could not get the "text-align: left;"

 

 

Sorry, can you explain in more detail?

Link to comment
Share on other sites

Hi,

 

 

Sorry, can you explain in more detail?

 

Hello Delphi Developer.
 
I was just mentioning to colleagues that I was able to make some changes to uniPanel and I posted my CSS.
 
And I took the opportunity to mention that the only property I could not change via CSS was "text-align".
 
 
I have no problem.
 
=)
Link to comment
Share on other sites

 

Hello Delphi Developer.
 
I was just mentioning to colleagues that I was able to make some changes to uniPanel and I posted my CSS.
 
And I took the opportunity to mention that the only property I could not change via CSS was "text-align".
 
 
I have no problem.
 
=)

 

 

OK, Sorry to have bothered you.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...