group nav is now links to nothing

This commit is contained in:
danielvincent 2010-08-01 22:27:39 -07:00
parent 19b633d3a3
commit 5974bf3571
3 changed files with 43 additions and 25 deletions

View file

@ -18,8 +18,7 @@
= csrf_meta_tag = csrf_meta_tag
= yield(:head) = yield(:head)
= javascript_include_tag 'satisfaction' , 'satisfaction-display' = javascript_include_tag 'satisfaction', 'satisfaction-display'
= javascript_include_tag 'jquery.html5_upload' = javascript_include_tag 'jquery.html5_upload'
%body %body
@ -44,11 +43,11 @@
#group #group
%ul %ul
%li.selected ACM %li.selected= link_to "OTHER PRESIDENTS", root_path
%li FAMILY %li= link_to "OSTATUS", ostatus_path
%li WORK /%li= link_to "NEW YORK", "#"
%li HIGH SCHOOL /%li= link_to "NEW CIRCLE", "#"
#user_pictures #friend_pictures
= link_to(person_image_tag(current_user), root_path) = link_to(person_image_tag(current_user), root_path)
= link_to(person_image_tag(current_user), root_path) = link_to(person_image_tag(current_user), root_path)
= link_to(person_image_tag(current_user), root_path) = link_to(person_image_tag(current_user), root_path)
@ -63,6 +62,8 @@
= link_to(person_image_tag(current_user), root_path) = link_to(person_image_tag(current_user), root_path)
- for friend in @friends - for friend in @friends
= person_image_link(friend) = person_image_link(friend)
.add_new
= link_to "+", requests_path
.container .container
- if user_signed_in? - if user_signed_in?
@ -85,9 +86,6 @@
.container .container
.span-24.last .span-24.last
= yield = yield
.span-24.last .span-24.last
= render "posts/debug" = render "posts/debug"

View file

@ -84,7 +84,6 @@ header {
text-shadow: none; } text-shadow: none; }
header #session_action { header #session_action {
float: right; float: right;
top: 0;
text-shadow: 0 1px 0 black; text-shadow: 0 1px 0 black;
padding-right: 10px; } padding-right: 10px; }
header #session_action a { header #session_action a {
@ -155,9 +154,10 @@ h3 {
font-weight: bold; } font-weight: bold; }
form { form {
position: relative;
font-size: 120%; font-size: 120%;
margin: 1em; margin: 1em;
margin-left: 0em; } margin-left: 0em; }
#user_name { #user_name {
margin-bottom: 20px; } margin-bottom: 20px; }
@ -301,7 +301,8 @@ label {
background-color: rgba(10, 81, 109, 0.05); background-color: rgba(10, 81, 109, 0.05);
border-bottom: 2px #999999 solid; border-bottom: 2px #999999 solid;
color: #999999; color: #999999;
padding: 15px 1em; } padding: 15px 1em;
padding-bottom: 30px; }
#new_blog, #new_blog,
#new_bookmark { #new_bookmark {
@ -416,15 +417,22 @@ h1.big_text {
#group { #group {
color: #333333; } color: #333333; }
#group ul { #group ul {
font-size: 18px;
margin: 0; margin: 0;
padding: 0; } padding: 0;
font-size: 14px; }
#group ul > li { #group ul > li {
display: inline; display: inline;
margin-right: 10px; } margin-right: 10px; }
#group ul > li.selected { #group ul > li.selected, #group ul > li.selected a {
color: white; color: white;
font-weight: bold; } font-weight: bold;
#group #user_pictures img { font-size: 18px; }
#group a {
color: #333333;
font-weight: normal; }
#group #friend_pictures .add_new {
display: inline;
font-size: 40px; }
#group #friend_pictures img {
display: inline-block; display: inline-block;
height: 40px; } height: 40px; }

View file

@ -97,7 +97,6 @@ header
#session_action #session_action
:float right :float right
:top 0
:text-shadow 0 1px 0 #000 :text-shadow 0 1px 0 #000
a a
:color #777 :color #777
@ -181,11 +180,11 @@ h3
:weight bold :weight bold
form form
:position relative
:font :font
:size 120% :size 120%
:margin 1em :margin 1em
:margin-left 0em :left 0em
#user_name #user_name
:margin :margin
@ -365,6 +364,7 @@ label
:bottom 2px #999 solid :bottom 2px #999 solid
:color #999 :color #999
:padding 15px 1em :padding 15px 1em
:bottom 30px
#new_blog, #new_blog,
#new_bookmark #new_bookmark
@ -517,19 +517,31 @@ h1.big_text
#group #group
:color #333 :color #333
ul ul
:font-size 18px
:margin 0 :margin 0
:padding 0 :padding 0
:font
:size 14px
> li > li
:display inline :display inline
:margin :margin
:right 10px :right 10px
&.selected &.selected, &.selected a
:color #fff :color #fff
:font-weight bold :font
:weight bold
:size 18px
#user_pictures a
:color #333
:font
:weight normal
#friend_pictures
.add_new
:display inline
:font
:size 40px
img img
:display inline-block :display inline-block
:height 40px :height 40px