Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Remote Application Platform (RAP) » About Table Color Setting
About Table Color Setting [message #116255] Fri, 19 December 2008 09:55 Go to next message
Terry  is currently offline Terry Friend
Messages: 19
Registered: July 2009
Junior Member
How to configure the color and weight of table border, and how to configure
background color for table header? I try to change the following element in
theme.css file, but this will change text color of the whole system.
* {
color: black;
background-color: rgb( 245,250,254 );
}
Re: About Table Color Setting [message #116286 is a reply to message #116255] Fri, 19 December 2008 10:22 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: ifurnadjiev.innoopract.com

Hi Terry,

to change the Table column header background color use:
TableColumn {
background-color: rgb( 248, 248, 255 );
}
About Table border... currently it is not possible to change only the
border of the Table. For changing border style for all widgets use:
* {
border: none;
}
*[BORDER] {
border: 2px inset;
}

Best,
Ivan

Terry Zhang wrote:
> How to configure the color and weight of table border, and how to configure
> background color for table header? I try to change the following element in
> theme.css file, but this will change text color of the whole system.
> * {
> color: black;
> background-color: rgb( 245,250,254 );
> }
>
Re: About Table Color Setting [message #116296 is a reply to message #116255] Fri, 19 December 2008 10:38 Go to previous message
Holger Staudacher is currently offline Holger StaudacherFriend
Messages: 166
Registered: July 2009
Senior Member
The * change the properties of all themable widgets. You can use:

Table {
color:black;
background-color:rgb(245,250,254);
}

Take a look at Table.default.css.

Regards,
Holger

On 2008-12-19 10:55:21 +0100, Terry Zhang <terry_zhang@i-len.com> said:

> How to configure the color and weight of table border, and how to configure
> background color for table header? I try to change the following element in
> theme.css file, but this will change text color of the whole system.
> * {
> color: black;
> background-color: rgb( 245,250,254 );
> }
Previous Topic:"entry point does not exist" after adding plugins?
Next Topic:Combo Size with latest CVS HEAD
Goto Forum:
  


Current Time: Thu Mar 28 22:12:19 GMT 2024

Powered by FUDForum. Page generated in 0.02902 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top