stuartbennett
Senior Member
Posts: 952 Reputation: 1
43 / /
Joined: Nov 2003
|
RE: [Help] Group bars
ok heres lines 8 - 33 of the 1004 style file, 1004 and 1009 are structured almost identically so should be easy to find in both files.
quote: 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 changes it to black bar with white text on it, text is controled via the foreground: tag back refers to the actual bar so change
Background:rgb(0,0,0);
to
Background:rcbkd(59020);
you get the idea, any problems come back to me.
|
|