Jump to content

Alterar a cor de fundo e a borda do PageControl


JulioPaladino

Recommended Posts

Olá a todos,

 

eu gostaria de saber como alterar a cor de fundo para branco e esconder a borda de uma PageControl!

 

Como exemplo, a página inicial do do uniGUI Desktop Demo Application, as etiquetas das páginas ativas tem o fundo branco, e sem borda do PageControl.

 

Obrigado!

 

 
Hello everyone,
 
I would like to know how to change the background color to white and hide the border of a PageControl!
 
As an example, the homepage of the uniGUI Desktop Demo Application, the labels of the active pages have the white, borderless background of the PageControl.
 
Thank you!    (Google Translator)

 

 

 

Julio Cesar

Brasilia - BR

 

Link to comment
Share on other sites

  • 4 weeks later...

Olá a todos, 

 

Eu acredito ter encontrado o parâmetro CSS que esconde a barra do pagecontrol, estou utilizando e até o momento esta dando certo.

 

Em CustomCSS no ServerModule coloque o seguinte parâmetro:

 

.x-tab-bar-default-horizontal {
    height: 0px;
}
 
 
Hello everyone,
I believe I have found the CSS parameter that hides the pagecontrol bar,
 
I'm using it and it's working so far.
 
In CustomCSS on ServerModule place the following parameter:

 

.x-tab-bar-default-horizontal {
    height: 0px;
}
 
 
* Google translation
Link to comment
Share on other sites

Olá a todos,

 

a solução acima é paleativa.

 

Após vários testes, a melhor configuração até então é:

 

.x-tab-bar-default {
    border-style: solid;
    border-color: #ffffff;
}
.x-tab-bar-default-top {
    background-image: -webkit-linear-gradient(top,#ffffff,#ffffff);
}
 
A primeira retira a borda superior e a segunda altera o fundo da barra de titulo do page control
 
Att.
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...