blessedguy
Skinning Contest Winner
Posts: 1762 Reputation: 25
32 / /
Joined: Jan 2008
|
RE: Hide Elements while connecting?
Just edit the 947 style...I've done that...it changes the boxes to anycolor you want when they are not active (cuz you're signing in)
code: CBInput[id=atom(idPasswordInput)]
{
Foreground:rcclr(20016);
MaxTextLength:16;
background:argb(200,255,255,255);
borderthickness:rcrect(20010);
bordercolor:rgb(0,0,0);
width:226;
padding:rect(4,3,4,3);
accessible:true;
accname:rcstr(61282);
accdesc:rcstr(61283);
accrole:42;
accstate:536870912;
margin:rect(0,2,0,5);
richeditstyle:PlainText|HideSelection|AllowBeep|UsePassword;
}
CBInput[id=atom(idPasswordInput)][enabled=false]
{
Foreground:rcclr(20016);
background:argb(20,255,255,255);
bordercolor:rgb(0,0,0);
}
element[id=atom(idEmailInputContainer)]
{
Width:226;
margin:rect(0,2,0,8);
borderthickness:rcrect(20010);
bordercolor:rgb(0,0,0);
contentalign:middleleft;
background:argb(200,255,255,255);
}
element[id=atom(idEmailInputContainer)][enabled=false]
{
Foreground:rcclr(20016);
background:argb(20,255,255,255);
bordercolor:rgb(0,0,0);
}
This is the code that is used in the pic (attachment)
Attachment: (233.02 KB)
This file has been downloaded 192 time(s).
This post was edited on 03-01-2008 at 04:12 PM by blessedguy.
|
|