summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-10-07 06:11:12 +0000
committerDries Buytaert <dries@buytaert.net>2005-10-07 06:11:12 +0000
commit7e1527ee61bc10b3765b95b9af8faaa2254da5a8 (patch)
tree2225c7f571b4a3f635564f8281406a12b2a271a7 /misc
parent7b5b460534e5c54b07d28467c2aa2fc670c714e4 (diff)
downloadbrdo-7e1527ee61bc10b3765b95b9af8faaa2254da5a8.tar.gz
brdo-7e1527ee61bc10b3765b95b9af8faaa2254da5a8.tar.bz2
- Patch #29465: new form API by Adrian et al.
TODO: + The contact.module was broken; a new patch for contact.module is needed. + Documentation is needed. + The most important modules need to be updated ASAP.
Diffstat (limited to 'misc')
-rw-r--r--misc/drupal.css5
-rw-r--r--misc/upload.js2
2 files changed, 6 insertions, 1 deletions
diff --git a/misc/drupal.css b/misc/drupal.css
index 840398666..16ee7362d 100644
--- a/misc/drupal.css
+++ b/misc/drupal.css
@@ -629,3 +629,8 @@ html.js fieldset.collapsed legend a {
display: block;
}
+/*
+** Temporary CSS for porting of drupal forms.
+*/
+form { border: 3px solid red; }
+form.form-api { border : 0px; }
diff --git a/misc/upload.js b/misc/upload.js
index 6437b3175..b4d2a9b6d 100644
--- a/misc/upload.js
+++ b/misc/upload.js
@@ -58,4 +58,4 @@ jsUpload.prototype.oncomplete = function (data) {
// Replace form and re-attach behaviour
$(this.wrapper).innerHTML = data;
uploadAutoAttach();
-} \ No newline at end of file
+}