- Patch #105216 by dww: profiles where no longer being themed due to missing CSS.

5.x
Dries Buytaert 2006-12-27 12:55:52 +00:00
parent 5f87220dda
commit 58de01883a
3 changed files with 16 additions and 20 deletions

View File

@ -1,17 +0,0 @@
/* $Id$ */
.profile {
clear: both;
margin: 1em 0;
}
.profile .picture {
float: right;
margin: 0 1em 1em 0;
}
.profile dt {
margin: 1em 0 0.2em 0;
font-weight: bold;
}
.profile dd {
margin:0;
}

View File

@ -421,9 +421,6 @@ function profile_admin_overview() {
* Menu callback; display a list of user information.
*/
function profile_browse() {
// Add CSS
drupal_add_css(drupal_get_path('module', 'profile') .'/profile.css', 'module', 'all', FALSE);
$name = arg(1);
list(,,$value) = explode('/', $_GET['q'], 3);

View File

@ -31,3 +31,19 @@
clear: right;
}
// Generated by user.module but used by profile.module:
.profile {
clear: both;
margin: 1em 0;
}
.profile .picture {
float: right;
margin: 0 1em 1em 0;
}
.profile dt {
margin: 1em 0 0.2em 0;
font-weight: bold;
}
.profile dd {
margin:0;
}