minute changes
This commit is contained in:
parent
d710ff6f4a
commit
e2b5af35c1
12 changed files with 30 additions and 22 deletions
|
|
@ -4,7 +4,7 @@
|
||||||
= link_to post.name, object_path(post)
|
= link_to post.name, object_path(post)
|
||||||
|
|
||||||
%div.time
|
%div.time
|
||||||
by:
|
by
|
||||||
= album_person(post)
|
= album_person(post)
|
||||||
%br
|
%br
|
||||||
= link_to(how_long_ago(post), object_path(post))
|
= link_to(how_long_ago(post), object_path(post))
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,18 @@
|
||||||
%h1.big_text
|
%h1.big_text
|
||||||
.back
|
.back
|
||||||
= link_to "⇧ home", root_path
|
= link_to "⇧ home", root_path
|
||||||
%ul.button_set
|
Albums
|
||||||
%li.selected= friends_albums_link
|
|
||||||
%li= your_albums_link
|
|
||||||
|
|
||||||
.button.right#add_album_button
|
.button.right#add_album_button
|
||||||
= link_to 'New Album', "#"
|
= link_to 'New Album', "#"
|
||||||
|
|
||||||
#add_album_box.contextual_pane
|
#add_album_box.contextual_pane
|
||||||
= render "albums/new_album"
|
= render "albums/new_album"
|
||||||
|
|
||||||
|
.sub_header
|
||||||
|
%ul.button_set
|
||||||
|
%li.selected= friends_albums_link
|
||||||
|
%li= your_albums_link
|
||||||
|
|
||||||
%ul#stream
|
%ul#stream
|
||||||
- for album in @albums
|
- for album in @albums
|
||||||
= render "album", :post => album
|
= render "album", :post => album
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
= render "photos/new_photo", :photo => @photo, :album => @album
|
= render "photos/new_photo", :photo => @photo, :album => @album
|
||||||
|
|
||||||
.sub_header
|
.sub_header
|
||||||
="last updated: #{how_long_ago(@album)}"
|
="updated #{how_long_ago(@album)}"
|
||||||
|
|
||||||
-unless mine? @album
|
-unless mine? @album
|
||||||
%h4= "by #{@album.person.real_name}"
|
%h4= "by #{@album.person.real_name}"
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@
|
||||||
%h1#user_name
|
%h1#user_name
|
||||||
= link_to current_user.real_name, root_path
|
= link_to current_user.real_name, root_path
|
||||||
%span= title_for_page
|
%span= title_for_page
|
||||||
%h3
|
%h3#latest_message
|
||||||
#latest_message= my_latest_message
|
= my_latest_message
|
||||||
= render "shared/publisher"
|
= render "shared/publisher"
|
||||||
%ul#stream
|
%ul#stream
|
||||||
- for post in @posts
|
- for post in @posts
|
||||||
|
|
|
||||||
|
|
@ -52,9 +52,9 @@
|
||||||
|
|
||||||
.container
|
.container
|
||||||
.span-24.last
|
.span-24.last
|
||||||
.span-19.append-1.last
|
.span-20.append-1.last
|
||||||
= yield
|
= yield
|
||||||
.span-4.last
|
.span-3.last
|
||||||
= link_to(person_image_tag(current_user), root_path)
|
= link_to(person_image_tag(current_user), root_path)
|
||||||
%br
|
%br
|
||||||
= link_to "Edit your profile", edit_user_path(current_user)
|
= link_to "Edit your profile", edit_user_path(current_user)
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,9 @@
|
||||||
- title "People"
|
%h1.big_text
|
||||||
|
.back
|
||||||
|
= link_to '⇧ home', root_path
|
||||||
|
Friends
|
||||||
|
.button.right
|
||||||
|
= link_to 'Add Friend', requests_path
|
||||||
|
|
||||||
%table
|
%table
|
||||||
%tr
|
%tr
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
%h1.big_text
|
%h1.big_text
|
||||||
.back
|
.back
|
||||||
= link_to "⇧ home", root_path
|
= link_to "⇧ home", root_path
|
||||||
requests
|
Requests
|
||||||
|
|
||||||
= render "requests/new_request", :request => @request
|
= render "requests/new_request", :request => @request
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
#publisher
|
#publisher
|
||||||
%sp
|
|
||||||
POST:
|
|
||||||
%ul#publisher_content_pickers
|
%ul#publisher_content_pickers
|
||||||
%li{ :class => "status_message selected" }= link_to "status message", "#"
|
%li{ :class => "status_message selected" }= link_to "status message", "#"
|
||||||
%li{ :class => "bookmark" }= link_to "bookmark", "#"
|
%li{ :class => "bookmark" }= link_to "bookmark", "#"
|
||||||
|
|
|
||||||
|
|
@ -172,6 +172,9 @@ form {
|
||||||
color: #dddddd;
|
color: #dddddd;
|
||||||
float: right; }
|
float: right; }
|
||||||
|
|
||||||
|
#latest_message {
|
||||||
|
font-weight: normal; }
|
||||||
|
|
||||||
#stream div.comments {
|
#stream div.comments {
|
||||||
display: none; }
|
display: none; }
|
||||||
|
|
||||||
|
|
@ -282,9 +285,6 @@ label {
|
||||||
color: #999999;
|
color: #999999;
|
||||||
padding: 20px 1em;
|
padding: 20px 1em;
|
||||||
padding-top: 10px; }
|
padding-top: 10px; }
|
||||||
#publisher sp {
|
|
||||||
font-family: "BrandonGrotesqueLightRegular";
|
|
||||||
font-size: large; }
|
|
||||||
|
|
||||||
#new_blog,
|
#new_blog,
|
||||||
#new_bookmark {
|
#new_bookmark {
|
||||||
|
|
|
||||||
|
|
@ -202,6 +202,10 @@ form
|
||||||
:size 30%
|
:size 30%
|
||||||
:color #dddddd
|
:color #dddddd
|
||||||
:float right
|
:float right
|
||||||
|
|
||||||
|
#latest_message
|
||||||
|
:font
|
||||||
|
:weight normal
|
||||||
|
|
||||||
|
|
||||||
#stream div.comments
|
#stream div.comments
|
||||||
|
|
@ -337,11 +341,6 @@ label
|
||||||
:color #999
|
:color #999
|
||||||
:padding 20px 1em
|
:padding 20px 1em
|
||||||
:top 10px
|
:top 10px
|
||||||
sp
|
|
||||||
:font
|
|
||||||
:family 'BrandonGrotesqueLightRegular'
|
|
||||||
:font-size large
|
|
||||||
|
|
||||||
|
|
||||||
#new_blog,
|
#new_blog,
|
||||||
#new_bookmark
|
#new_bookmark
|
||||||
|
|
@ -473,3 +472,5 @@ h1.big_text
|
||||||
:top -5px
|
:top -5px
|
||||||
:bottom 20px
|
:bottom 20px
|
||||||
:color #999
|
:color #999
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
.button, .button_set
|
.button, .button_set
|
||||||
:font
|
:font
|
||||||
:family "Lucida Grande", sans-serif
|
:family "Lucida Grande", sans-serif
|
||||||
|
:style normal
|
||||||
|
|
||||||
:display inline
|
:display inline
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.button, .button_set {
|
.button, .button_set {
|
||||||
font-family: "Lucida Grande", sans-serif;
|
font-family: "Lucida Grande", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
display: inline;
|
display: inline;
|
||||||
color: #777777;
|
color: #777777;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue