[?] Contact List Tab Borders |
Author: |
Message: |
Nagamasa
Skinning Contest Winner
Posts: 1842 Reputation: 30
30 / /
Joined: May 2006
|
O.P. [?] Contact List Tab Borders
I've been trying to get rid of the borders in between and around the tabs in the contact list, but without success. How do I get rid of them?
Thanks.
This post was edited on 04-05-2008 at 09:38 PM by Nagamasa.
Joined this forum 6746 days, 12 minutes, 45 seconds ago.
|
|
04-05-2008 09:37 PM |
|
|
blessedguy
Skinning Contest Winner
Posts: 1762 Reputation: 25
31 / /
Joined: Jan 2008
|
RE: [?] Contact List Tab Borders
923 style
look for
code: button[class="TabButton"]
{
foreground:argb(0,152,151,139);
Accessible:true;
AccRole:43;
tooltip:true;
animation:rectanglev|fast|log;
alpha:192;
padding:rect(1,1,0,1);
}
button[class="TabButton"][enabled=false]
{
foreground:rgb(128,128,128);
alpha:178;
}
button[class="TabButton"][selected]
{
alpha:255;
background:argb(0,255,255,255);
padding:rect(0,0,0,0);
BorderColor:argb(0,0,0,0);
BorderThickness:rect(0,0,1,0);
}
and include the padding, so that borders will be out of the window or change all border thickness to 0 (in mine, i let like that so that the active tab would have a black line outside the tab)
here's the result:
This post was edited on 04-05-2008 at 09:57 PM by blessedguy.
|
|
04-05-2008 09:49 PM |
|
|
Nagamasa
Skinning Contest Winner
Posts: 1842 Reputation: 30
30 / /
Joined: May 2006
|
O.P. RE: [?] Contact List Tab Borders
Not working...I've like spammed every value possible:
code: button[class="TabButton"]
{
foreground:argb(0,0,0,0);
Accessible:true;
AccRole:43;
tooltip:true;
animation:rectanglev|fast|log;
alpha:192;
padding:rect(0,0,0,0);
BorderThickness:rect(0,0,0,0);
}
button[class="TabButton"][enabled=false]
{
foreground:argb(0,0,0,0);
alpha:178;
BorderThickness:rect(0,0,0,0);
padding:rect(0,0,0,0);
}
button[class="TabButton"][selected]
{
alpha:255;
background:argb(0,255,255,255);
padding:rect(0,0,0,0);
BorderColor:argb(0,0,0,0);
BorderThickness:rect(0,0,0,0);
}
Joined this forum 6746 days, 12 minutes, 45 seconds ago.
|
|
04-06-2008 02:44 AM |
|
|
Basilis
Veteran Member
Olympiacos CFP
Posts: 1366 Reputation: 46
31 / /
Joined: Dec 2007
|
RE: [?] Contact List Tab Borders
Try doing it in the definition file. Don't know where exactly but when I wanted to remove a border, it wasn't removed from the style file whereas when I tried finding it in the definition it worked perfectly. I had changed the thickness to (0,0,0,0) as you did. Hope this helps
|
|
04-06-2008 09:27 AM |
|
|
Willz
Senior Member
Posts: 953 Reputation: 52
36 / /
Joined: Jul 2006
|
RE: [?] Contact List Tab Borders
Its all in the first few lines of the 923 definition.
<element layout=borderlayout() padding=rect(0,0,1,0)>
<Element id=atom(tabseparator) layout=filllayout()>
<Element layout=filllayout() borderthickness= rect(0,1,0,0) ID=Atom(ai196)>
<Element padding=rect(0,0,0,0) layout=filllayout() borderthickness= rect(0,1,0,0) ID=Atom(ai197)/>
</Element>
</Element>
</element>
Just change them to borderthickness=rect(0,0,0,0) and voila done
This post was edited on 04-06-2008 at 10:53 AM by Willz.
|
|
04-06-2008 10:52 AM |
|
|
Nagamasa
Skinning Contest Winner
Posts: 1842 Reputation: 30
30 / /
Joined: May 2006
|
O.P. RE: [?] Contact List Tab Borders
code: <element layout=borderlayout() padding=rect(0,0,1,0)>
<Element id=atom(tabseparator) layout=filllayout()>
<Element layout=filllayout() borderthickness=rect(0,0,0,0) ID=Atom(ai196)>
<Element padding=rect(0,0,0,0) layout=filllayout() borderthickness=rect(0,0,0,0) ID=Atom(ai197)/>
</Element>
</Element>
</element>
I got lines between the tabs removed, but I want to get the line bordering the tabs removed too...
and while I'm at it, how would I remove the border around the conversation (aka the big box)? I've got all the other borders removed, but that one.
Attachment: Capture.JPG (33.24 KB)
This file has been downloaded 304 time(s).
Joined this forum 6746 days, 12 minutes, 45 seconds ago.
|
|
04-06-2008 03:22 PM |
|
|
Basilis
Veteran Member
Olympiacos CFP
Posts: 1366 Reputation: 46
31 / /
Joined: Dec 2007
|
RE: [?] Contact List Tab Borders
For the first one, find the element ai215 in the 923 definition file.
|
|
04-06-2008 03:30 PM |
|
|
|
|