From d3f7b8f2ffeef6d94adabaa648bccd00ab5b96fd Mon Sep 17 00:00:00 2001 From: Massimo Di Pierro Date: Sun, 4 Dec 2011 00:34:19 -0600 Subject: [PATCH] thinner welcome footer, thanks Anthony --- VERSION | 2 +- applications/examples/static/css/web2py.css | 4 ---- applications/welcome/static/css/web2py.css | 4 ---- gluon/sqlhtml.py | 4 +--- 4 files changed, 2 insertions(+), 12 deletions(-) diff --git a/VERSION b/VERSION index 517a7853..f8d46249 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 1.99.3 (2011-12-04 00:27:37) dev +Version 1.99.3 (2011-12-04 00:34:11) dev diff --git a/applications/examples/static/css/web2py.css b/applications/examples/static/css/web2py.css index e1968dca..18e087fc 100644 --- a/applications/examples/static/css/web2py.css +++ b/applications/examples/static/css/web2py.css @@ -53,10 +53,6 @@ html, body { clear: both; } -.footer { - padding-bottom: 100px; -} - .footer-content {position: relative; bottom: -4em; width: 100%;} .auth_navbar { diff --git a/applications/welcome/static/css/web2py.css b/applications/welcome/static/css/web2py.css index e1968dca..18e087fc 100644 --- a/applications/welcome/static/css/web2py.css +++ b/applications/welcome/static/css/web2py.css @@ -53,10 +53,6 @@ html, body { clear: both; } -.footer { - padding-bottom: 100px; -} - .footer-content {position: relative; bottom: -4em; width: 100%;} .auth_navbar { diff --git a/gluon/sqlhtml.py b/gluon/sqlhtml.py index 4ba9edb6..32994727 100644 --- a/gluon/sqlhtml.py +++ b/gluon/sqlhtml.py @@ -453,9 +453,7 @@ class UploadWidget(FormWidget): :param download_url: Optional URL to link to the file (default = None) """ - default=dict( - _type='file', - ) + default=dict(_type='file',) attr = cls._attributes(field, default, **attributes) inp = INPUT(**attr)