summaryrefslogtreecommitdiff
path: root/theme
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-09-16 15:53:46 -0400
committerEvan Prodromou <evan@prodromou.name>2008-09-16 15:53:46 -0400
commit7416e50daa6f792f73e47141fa7ac3bfc843b1e0 (patch)
tree4de167e88ce6aad9e9a68b8d956ce9815fc10552 /theme
parentd57b39e8a5596e91ffae4d583e18934b807b8e43 (diff)
inbox and outbox for direct messages
Added an inbox and outbox for direct messages. Factored common code to mailbox.php. Factored common code with stream.php to personal.php. darcs-hash:20080916195346-84dde-b5c846f713a970c41fd1b0671cb333e91f3cb920.gz
Diffstat (limited to 'theme')
-rw-r--r--theme/stoica/display.css51
1 files changed, 51 insertions, 0 deletions
diff --git a/theme/stoica/display.css b/theme/stoica/display.css
index a6de393bf..c35ee56a5 100644
--- a/theme/stoica/display.css
+++ b/theme/stoica/display.css
@@ -714,3 +714,54 @@ font-size: 80%;
p.tagcloud a.smallest {
font-size: 60%;
}
+
+/* ----- Mailbox ----- */
+
+#messages {
+ clear: both;
+ margin: 0 auto;
+ padding: 0;
+ list-style-type: none;
+ width: 540px;
+ border-top: 1px solid #D8E2D7;
+ }
+
+#messages a:hover {
+ text-decoration: underline;
+ }
+
+.message_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 #D8E2D7;
+ }
+.message_single:hover {
+ background-color: #F3F8EA;
+ }
+.message_single p {
+ display: inline;
+ margin: 0;
+ padding: 0;
+ }
+
+.avatar.stream {
+ float: left;
+ margin: 0 10px 0 0;
+ }
+
+p.time {
+ display: block;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 10px;
+ line-height: 15px;
+ }
+
+p.time a {
+ color: #91AA9D;
+ }