photo show page shows more photo.
This commit is contained in:
parent
533ff2fc39
commit
6c12a4c562
4 changed files with 40 additions and 34 deletions
|
|
@ -7,22 +7,24 @@
|
||||||
|
|
||||||
= render 'shared/author_info', :person => @photo.person, :post => @photo
|
= render 'shared/author_info', :person => @photo.person, :post => @photo
|
||||||
|
|
||||||
.span-14.append-1.last
|
.span-15.append-1.last
|
||||||
|
#photo_container
|
||||||
#show_photo{:data=>{:guid=>@photo.id}}
|
#show_photo{:data=>{:guid=>@photo.id}}
|
||||||
-if @ownership
|
-if @ownership
|
||||||
= image_tag 'ajax-loader.gif', :id => "photo_spinner", :class => "hidden"
|
= image_tag 'ajax-loader.gif', :id => "photo_spinner", :class => "hidden"
|
||||||
= image_tag @photo.url(:scaled_full)
|
= image_tag @photo.url(:scaled_full)
|
||||||
.photo_options{:data=>{:actor=>"#{@photo.person.owner.id}",:actor_person=>"#{@photo.person.id}",:image_url=>"#{@photo.url(:thumb_large)}"}}
|
|
||||||
= link_to t('.make_profile_photo'), {:controller => "photos", :action => "make_profile_photo", :photo_id => @photo.id}, :remote => true, :class => 'make_profile_photo'
|
|
||||||
|
|
|
||||||
= link_to t('.edit'), '#', :id => "edit_photo_toggle"
|
|
||||||
|
|
||||||
-else
|
-else
|
||||||
= image_tag @photo.url(:scaled_full)
|
= image_tag @photo.url(:scaled_full)
|
||||||
|
|
||||||
#caption
|
#caption
|
||||||
= @photo.caption
|
= @photo.caption
|
||||||
|
|
||||||
|
.photo_options{:data=>{:actor=>"#{@photo.person.owner.id}",:actor_person=>"#{@photo.person.id}",:image_url=>"#{@photo.url(:thumb_large)}"}}
|
||||||
|
= link_to t('.make_profile_photo'), {:controller => "photos", :action => "make_profile_photo", :photo_id => @photo.id}, :remote => true, :class => 'make_profile_photo'
|
||||||
|
|
|
||||||
|
= link_to t('.edit'), '#', :id => "edit_photo_toggle"
|
||||||
|
|
||||||
|
|
||||||
%br
|
%br
|
||||||
|
|
||||||
-if @ownership
|
-if @ownership
|
||||||
|
|
@ -35,7 +37,7 @@
|
||||||
%p
|
%p
|
||||||
= button_to t('.delete_photo'), @photo, :confirm => t('are_you_sure'), :method => :delete
|
= button_to t('.delete_photo'), @photo, :confirm => t('are_you_sure'), :method => :delete
|
||||||
|
|
||||||
.span-9.last
|
.span-8.last
|
||||||
- if @photo.status_message_id
|
- if @photo.status_message_id
|
||||||
#original_post_info
|
#original_post_info
|
||||||
%h4{:style=>"position:relative;"}
|
%h4{:style=>"position:relative;"}
|
||||||
|
|
@ -51,6 +53,6 @@
|
||||||
|
|
||||||
%h4= t('_comments')
|
%h4= t('_comments')
|
||||||
|
|
||||||
%div{:id => 'photo_stream', :class => 'stream show'}
|
%ul{:id => 'photo_stream', :class => 'stream show'}
|
||||||
%li.message{:data=>{:guid=>@parent.id}}
|
%li.message{:data=>{:guid=>@parent.id}}
|
||||||
= render "comments/comments", :post_id => @parent.id, :comment_hashes => @comment_hashes
|
= render "comments/comments", :post_id => @parent.id, :comment_hashes => @comment_hashes
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#author_info
|
#author_info
|
||||||
= person_image_link(person)
|
= person_image_link(person)
|
||||||
.from
|
.from
|
||||||
%h2
|
%h3
|
||||||
= person.name
|
= person.name
|
||||||
|
|
||||||
- if post.public?
|
- if post.public?
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
= render 'shared/author_info', :person => @status_message.person, :post => @status_message
|
= render 'shared/author_info', :person => @status_message.person, :post => @status_message
|
||||||
|
|
||||||
.span-14.append-1.last
|
.span-15.append-1.last
|
||||||
#show_text
|
#show_text
|
||||||
%p
|
%p
|
||||||
= markdownify(@status_message.message, :youtube_maps => @status_message[:youtube_titles])
|
= markdownify(@status_message.message, :youtube_maps => @status_message[:youtube_titles])
|
||||||
|
|
@ -23,8 +23,8 @@
|
||||||
- if current_user.owns? @status_message
|
- if current_user.owns? @status_message
|
||||||
= link_to t('.destroy'), @status_message, :confirm => t('are_you_sure'), :method => :delete
|
= link_to t('.destroy'), @status_message, :confirm => t('are_you_sure'), :method => :delete
|
||||||
|
|
||||||
.span-9.last
|
.span-8.last
|
||||||
%h4{:style=>"margin-bottom:5px;"}= t('_comments')
|
%h4{:style=>"margin-bottom:5px;"}= t('_comments')
|
||||||
%div{:class => 'stream show', :id => 'status_message_stream'}
|
%ul{:class => 'stream show', :id => 'status_message_stream'}
|
||||||
%li.message{:data=>{:guid=>@status_message.id}}
|
%li.message{:data=>{:guid=>@status_message.id}}
|
||||||
= render "comments/comments", :post_id => @status_message.id, :comment_hashes => @comment_hashes
|
= render "comments/comments", :post_id => @status_message.id, :comment_hashes => @comment_hashes
|
||||||
|
|
|
||||||
|
|
@ -270,21 +270,21 @@ header
|
||||||
|
|
||||||
img
|
img
|
||||||
:position relative
|
:position relative
|
||||||
:top 6px
|
:top 3px
|
||||||
:display inline-block
|
:display inline-block
|
||||||
:height 50px
|
:height 40px
|
||||||
:width 50px
|
:width 40px
|
||||||
|
|
||||||
.from
|
.from
|
||||||
:display inline-block
|
:display inline-block
|
||||||
:padding 12px
|
:padding 10px
|
||||||
:top 0
|
:top 0
|
||||||
|
|
||||||
&.profile
|
&.profile
|
||||||
.from
|
.from
|
||||||
:padding 0
|
:padding 0
|
||||||
|
|
||||||
h2
|
h2,h3
|
||||||
:margin
|
:margin
|
||||||
:bottom -2px
|
:bottom -2px
|
||||||
|
|
||||||
|
|
@ -293,6 +293,13 @@ header
|
||||||
:margin
|
:margin
|
||||||
:right 2em
|
:right 2em
|
||||||
|
|
||||||
|
.aspect_badge
|
||||||
|
:position relative
|
||||||
|
:top -2px
|
||||||
|
:font
|
||||||
|
:size small
|
||||||
|
:padding 2px 4px
|
||||||
|
|
||||||
|
|
||||||
li.message
|
li.message
|
||||||
:position relative
|
:position relative
|
||||||
|
|
@ -509,7 +516,7 @@ li.message
|
||||||
|
|
||||||
ul.comments
|
ul.comments
|
||||||
textarea
|
textarea
|
||||||
:width 324px
|
:width 284px
|
||||||
|
|
||||||
.stream ul.comments
|
.stream ul.comments
|
||||||
.avatar
|
.avatar
|
||||||
|
|
@ -665,6 +672,10 @@ li.message:hover
|
||||||
&:first-child
|
&:first-child
|
||||||
:margin-right 1em
|
:margin-right 1em
|
||||||
|
|
||||||
|
#photo_container
|
||||||
|
:text
|
||||||
|
:align center
|
||||||
|
|
||||||
#show_photo
|
#show_photo
|
||||||
:position relative
|
:position relative
|
||||||
:display inline-block
|
:display inline-block
|
||||||
|
|
@ -673,6 +684,8 @@ li.message:hover
|
||||||
|
|
||||||
:padding 10px
|
:padding 10px
|
||||||
:bottom 30px
|
:bottom 30px
|
||||||
|
:margin
|
||||||
|
:bottom 2em
|
||||||
|
|
||||||
:-webkit-box-shadow 0 2px 4px #333
|
:-webkit-box-shadow 0 2px 4px #333
|
||||||
:-moz-box-shadow 0 2px 4px #333
|
:-moz-box-shadow 0 2px 4px #333
|
||||||
|
|
@ -1397,11 +1410,6 @@ input[type="search"]
|
||||||
|
|
||||||
|
|
||||||
.photo_options
|
.photo_options
|
||||||
:display inline
|
|
||||||
:position absolute
|
|
||||||
:bottom 5px
|
|
||||||
:right 13px
|
|
||||||
|
|
||||||
:color #999
|
:color #999
|
||||||
|
|
||||||
ul.aspects
|
ul.aspects
|
||||||
|
|
@ -1983,10 +1991,6 @@ h3,h4
|
||||||
:-moz-box-shadow 0 1px 2px #666
|
:-moz-box-shadow 0 1px 2px #666
|
||||||
:box-shadow 0 1px 2px #666
|
:box-shadow 0 1px 2px #666
|
||||||
|
|
||||||
:-webkit-border-radius 5px
|
|
||||||
:-moz-border-radius 5px
|
|
||||||
:border-radius 5px
|
|
||||||
|
|
||||||
.what_is_this
|
.what_is_this
|
||||||
:position relative
|
:position relative
|
||||||
:top 3px
|
:top 3px
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue