diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-11 18:16:32 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-11 18:16:32 +0000 |
commit | 3b8c99d91e3733427e9f821ed385f097d18e8ffa (patch) | |
tree | 34ec7c5574a1c00d348eb371de067f25625ec125 /misc | |
parent | c6eede081fa9d88c4ece2ca96f5369dcbebff189 (diff) | |
download | brdo-3b8c99d91e3733427e9f821ed385f097d18e8ffa.tar.gz brdo-3b8c99d91e3733427e9f821ed385f097d18e8ffa.tar.bz2 |
- Bugfix: fixed the CREATE FUNCTION in database.mssql as it needs to be prefixed with GO for some obscure reason. Patch by Kjartan.
- Bugfix: fixed the defaults for blocks in database.mssql so the NOT NULL fields get values. Patch by Kjartan.
- Bugfix: changed check_form() to use htmlspecialchars() instead of drupal_specialchars() as this caused Drupal to emit incorrect form items in presence of quotes. Example:
<input type="submit" class="form-submit" name="op" value="Submit "top nodes" block changes" />
IMO, drupal_specialchars() is better called xmlspecialchars() to avoid confusion.
- Bugfix: when an anonymous user visits a site, they shouldn't see any content (except the login block, if it is enabled) unless they have the "access content" permissions. Patch by Matt Westgate.
- Improvement: improved the error checking and the error messages in the profile module. Updated the code to match the Drupal coding conventions. Modified patch from Matt Westgate.
- Improvement: don't generate the <base href=""> tag in the base theme; it is already emitted by theme_head(). Patch by Kristjan.
- Improvement: don't execute any SQL queries when checking the permissions of user #1. Patch by Kjartan.
- Improvement: made a scalable layout form that works in IE and that behaves better with narrow themes. Part of patch #51 by Al.
- Improvement: removed some redundant print statements from the comment module. Modified patch from Craig Courtney.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/admin.css | 19 | ||||
-rw-r--r-- | misc/drupal.css | 21 |
2 files changed, 17 insertions, 23 deletions
diff --git a/misc/admin.css b/misc/admin.css index 6b68a2aae..14f9b3466 100644 --- a/misc/admin.css +++ b/misc/admin.css @@ -127,22 +127,3 @@ dd { #update { padding: 1em 1em 1em 1em; } -.node-form .admin { - float: none; width: auto; margin-top: 0; -} -.node-form .standard { - margin-right: 0; - clear: both; -} -.node-form .admin .form-item .title { - margin-top: 0; -} -.node-form .admin .authored .form-item { - margin-bottom: 1.1em; -} -.node-form .admin .authored, .node-form .admin .options, .node-form .admin .extra { - float: left; margin-right: 2em; margin-bottom: 1em; -} -.node-form .admin .form-item .form-text { - width: auto; -} diff --git a/misc/drupal.css b/misc/drupal.css index 7f2a217a7..96065b78c 100644 --- a/misc/drupal.css +++ b/misc/drupal.css @@ -48,10 +48,23 @@ th { .poll .vote-form .choices { text-align: left; margin: 0 auto; display: table; } -.node-form .admin { float: right; width: 15em; margin-top: -1.1em; } -.node-form .standard { margin-right: 15em; } -.node-form .form-text { display: block; } -.node-form textarea { display: block; } +.node-form .form-text { display: block; width: 95%; } +.node-form textarea { display: block; width: 95%; } + +.node-form .standard { + clear: both; +} +.node-form .admin .form-item .title { + margin-top: 0; +} +.node-form .admin .authored .form-item { + margin-bottom: 1.1em; +} +.node-form .admin .authored .form-text { width: auto; } + +.node-form .admin .authored, .node-form .admin .options, .node-form .admin .extra { + float: left; margin-right: 2em; margin-bottom: 1em; +} .marker { color: #f00; } .error { color: #f00; } |