diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-01-23 09:46:29 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-01-23 09:46:29 +0000 |
commit | ef3f47b8f5e8da1d4ae15fc3946332a346e63e0b (patch) | |
tree | 4218f2634686236f692f1fc63a2fce77b4f03f3a | |
parent | 1305ecf4bd58b8651fd8648d65263a24ed47bbc6 (diff) |
trac750 Better styling for the Facebook profile box widget
-rw-r--r-- | lib/facebookaction.php | 52 |
1 files changed, 25 insertions, 27 deletions
diff --git a/lib/facebookaction.php b/lib/facebookaction.php index 2dbe15970..92130e199 100644 --- a/lib/facebookaction.php +++ b/lib/facebookaction.php @@ -331,37 +331,35 @@ class FacebookAction extends Action // Need to include inline CSS for styling the Profile box $style = '<style> - #notices { - clear: both; - margin: 0 auto; - padding: 0; - list-style-type: none; - width: 600px; - border-top: 1px solid #dec5b5; + .entry-title .vcard .photo { + float:left; + display:inline; } - #notices a:hover { - text-decoration: underline; + .entry-title .vcard .nickname { + margin-left:5px; } - .notice_single { - clear: both; - display: block; - margin: 0; - padding: 5px 5px 5px 0; - min-height: 48px; - font-family: Georgia, "Times New Roman", Times, serif; - font-size: 13px; - line-height: 16px; - border-bottom: 1px solid #dec5b5; - background-color:#FCFFF5; - opacity:1; + + .entry-title p.entry-content { + display:inline; + margin-left:5px; + } + + div.entry-content dl, + div.entry-content dt, + div.entry-content dd { + display:inline; + } + + div.entry-content dt, + div.entry-content dd { + display:inline; + margin-left:5px; } - .notice_single:hover { - background-color: #f7ebcc; + div.entry-content dl.timestamp dt { + display:none; } - .notice_single p { - display: inline; - margin: 0; - padding: 0; + div.entry-content dd a { + display:inline-block; } </style>'; |