scripts/welcome.erb in closure-1.4.3 vs scripts/welcome.erb in closure-1.5.0

- old
+ new

@@ -1,6 +1,6 @@ -<% +<% require 'fileutils' source_dir = File.expand_path File.dirname(__FILE__) dest_dir = Dir.getwd @@ -48,31 +48,32 @@ <html> <head> <meta name="Content-Type" content="text/html; charset=UTF-8" /> <title>Welcome to Closure</title> <style type="text/css" media="screen"> - body{font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;} + html {font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;} + button,input,optgroup,select,textarea {font-family: sans-serif; font-size: inherit;} </style> </head> <body> - + <h1>Welcome to Closure</h1> - + <dl> <dt>Running in:</dt> <dd><%=h dest_dir %></dd> </dl> - + <% if !conflict %> <form action='?' method="post"> Prepare this folder? &nbsp; <input type="submit" value="Write Scaffold" onclick="this.form.submit();return this.disabled=true" /> </form> <% else %> <span style="color:red">ERROR:</span> Existing files prevent scaffold install. <% end %> - + </body> </html> <% end -%>