From 822be670fe2de7a0c22fab6be83f326c546e2f19 Mon Sep 17 00:00:00 2001 From: Massimo Di Pierro Date: Mon, 19 Dec 2011 22:59:14 -0600 Subject: [PATCH] decimal widget should have decimal class --- VERSION | 2 +- applications/welcome/static/css/web2py.css | 1 + gluon/sqlhtml.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 08849d5c..5b2f40a6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 1.99.4 (2011-12-18 10:58:10) stable +Version 1.99.4 (2011-12-19 22:58:55) stable diff --git a/applications/welcome/static/css/web2py.css b/applications/welcome/static/css/web2py.css index 63a8fcfd..934e623c 100644 --- a/applications/welcome/static/css/web2py.css +++ b/applications/welcome/static/css/web2py.css @@ -30,6 +30,7 @@ small { font-size: 0.8em; } textarea { width: 600px; } code { font-family: Courier;} input[type=text], input[type=password], select { width: 300px; } +ul { list-style-type: none; margin: 0px; padding: 0px; } /** end **/ /* Sticky footer begin */ diff --git a/gluon/sqlhtml.py b/gluon/sqlhtml.py index 35eddf3d..19c688ec 100644 --- a/gluon/sqlhtml.py +++ b/gluon/sqlhtml.py @@ -135,7 +135,7 @@ class DoubleWidget(StringWidget): class DecimalWidget(StringWidget): - _class = 'double' + _class = 'decimal' class TimeWidget(StringWidget):