From c9709dd1e7e4cadbf78d40207d066205a5120ee4 Mon Sep 17 00:00:00 2001 From: maxwell Date: Sat, 24 Jul 2010 01:39:15 -0700 Subject: [PATCH] MS put current status back on page --- app/views/dashboards/index.html.haml | 3 ++- public/stylesheets/application.css | 5 +++++ public/stylesheets/sass/application.sass | 7 +++++++ 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/app/views/dashboards/index.html.haml b/app/views/dashboards/index.html.haml index 7521683bc..eab45ae35 100644 --- a/app/views/dashboards/index.html.haml +++ b/app/views/dashboards/index.html.haml @@ -1,7 +1,8 @@ - if user_signed_in? %h1#user_name = link_to current_user.real_name, root_path - %h1= title_for_page + %span= title_for_page + %h3= my_latest_message = render "shared/publisher" %ul#stream = puts @posts.inspect diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 67daa26b2..6e31c853b 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -160,6 +160,11 @@ form { line-height: 100px; } #user_name a { color: black; } + #user_name span { + line-height: 140px; + font-size: 30%; + color: #dddddd; + float: right; } #stream div.comments { display: none; } diff --git a/public/stylesheets/sass/application.sass b/public/stylesheets/sass/application.sass index cbd3b4017..8809af2a8 100644 --- a/public/stylesheets/sass/application.sass +++ b/public/stylesheets/sass/application.sass @@ -188,6 +188,13 @@ form :line-height 100px a :color #000 + span + :line-height 140px + :font + :size 30% + :color #dddddd + :float right + #stream div.comments :display none