stuartbennett
Senior Member
Posts: 952 Reputation: 1
43 / /
Joined: Nov 2003
|
RE: changing contact list highlight
refer to lines 1 - 33 of your 1004 styles and 1009 styles files which looks like this.
quote: <Style ResID=clss>
Element
{
FontFace:"MS Shell Dlg 2";
FontSize:8pt;
ContentAlign:MiddleLeft;
}
Element[id=atom(listitem)][selected]
{
Background:rgb(0,0,0); // 210,234,246
Foreground:rgb(255,255,255); // 0,0,0
}
Element[id=atom(listitem)][selected][windowactive=false]
{
Background:rgb(0,0,0); // 228,228,228
Foreground:rgb(255,255,255); // 0,0,0
}
Element[id=atom(listitem)][selected][keyfocused=false]
{
Background:rgb(0,0,0); // 228,228,228
Foreground:rgb(255,255,255); // 0,0,0
}
Element[id=atom(listitem)][selected][indrag]
{
Background:rgb(0,0,0); // 210,234,246
Foreground:rgb(255,255,255); // 0,0,0
Alpha:128;
}
Element[id=atom(listitem)] // this element has been added in
{
Background:argb(0,0,0,0); // added in
Foreground:rgb(255,255,255); // 0,0,0
}
that code is from our easter theme and is used to put a highlight with a black background with white text, do this in both the 1004 and 1009 styles files which for the most part are layed out almost identically and your ready to go.
danny and duck i hope that this helps you, im only assuming this is right based on the name listitem as it sounds like the right thing but to be 100% certain check with freak544 as he coded this element into several of our themes in our skin.
|
|