[dw-nonfree] New create account flow
[commit: http://hg.dwscoalition.org/dw-nonfree/rev/225dfe2e0f53]
http://bugs.dwscoalition.org/show_bug.cgi?id=373
New create account flow.
Patch by
janinedog.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=373
New create account flow.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- cgi-bin/bml/scheme/tropo-red.look
- etc/config-local.pl
- htdocs/stc/tropo/red.css
-------------------------------------------------------------------------------- diff -r 869b1fdce62f -r 225dfe2e0f53 cgi-bin/bml/scheme/tropo-red.look --- a/cgi-bin/bml/scheme/tropo-red.look Tue Mar 17 07:15:44 2009 +0000 +++ b/cgi-bin/bml/scheme/tropo-red.look Thu Mar 19 04:21:23 2009 +0000 @@ -20,6 +20,7 @@ p=>{D}<p>%%data%%</p> p=>{D}<p>%%data%%</p> hr=><hr /> +de=><p style='font-size: smaller;'>%%data%%</p> emailex=><div style='width: 50%; font-family: courier; background-color: #efefef; border: dotted #cdcdcd 2px; padding: 5px;'>%%data%%</div> standout<= diff -r 869b1fdce62f -r 225dfe2e0f53 etc/config-local.pl --- a/etc/config-local.pl Tue Mar 17 07:15:44 2009 +0000 +++ b/etc/config-local.pl Thu Mar 19 04:21:23 2009 +0000 @@ -105,6 +105,13 @@ # various PayPal related events email => $DW::PRIVATE::PAYPAL{email}, ); + + # if you define these, little help bubbles appear next to common + # widgets to the URL you define: + %HELPURL = ( + paidaccountinfo => "http://www.dreamwidth.org/support/faqbrowse.bml?faqid=4", + ); + } 1; diff -r 869b1fdce62f -r 225dfe2e0f53 htdocs/stc/tropo/red.css --- a/htdocs/stc/tropo/red.css Tue Mar 17 07:15:44 2009 +0000 +++ b/htdocs/stc/tropo/red.css Thu Mar 19 04:21:23 2009 +0000 @@ -634,3 +634,45 @@ table.editfilters td { .invitecodes td { padding: 5px; } + + +/* create flow */ + +.create-form td { + padding: 5px; +} + +.appwidget-createaccount .create-button { + color: #444; + background-color: #f4717a; +} + +.appwidget-createaccountprogressmeter .step-block-active { + color: #fff; + background-color: #c1272d; +} + +.appwidget-createaccountprogressmeter .step-block-inactive { + color: #fff; + background-color: #f4717a; +} + +.appwidget-createaccountprogressmeter .step-selected { + color: #c1272d; +} + +.appwidget-createaccountprogressmeter .step-previous { + color: #f4717a; +} + +.appwidget-createaccountprogressmeter .step-next { + color: #666; +} + +.appwidget-createaccountprofile .header { + color: #c1272d; +} + +.appwidget-createaccountprofile .field-name { + background-color: #e0e0e0; +} --------------------------------------------------------------------------------