Skip to content
Snippets Groups Projects
Commit 4fd4e886 authored by maxwell's avatar maxwell
Browse files

Merge branch 'master' of github.com:diaspora/diaspora

parents 9f63dd9b b80d75c3
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,9 @@
%li.aspect
.aspect_name
%h1{:contenteditable => true}= aspect.name
%span.edit_name_field
%h1{:contenteditable => true}= aspect.name
%span.tip click to edit
%ul.tools
%li= link_to "add a new friend", "#add_request_pane_#{aspect.id}", :class => 'add_request_button'
......@@ -56,7 +58,7 @@
%li.person{:id => person.id, :from_aspect_id => aspect.id}
= person_image_tag(person)
.name
= person.real_name
= link_to person.real_name, person
.yo{:style => 'display:none'}
%div{:id => "add_request_pane_#{aspect.id}"}
= render "requests/new_request", :aspect => aspect
......
......@@ -9,7 +9,7 @@
- if @aspect == :all
= link_to "All Aspects", root_path
- elsif @aspect == :manage
= link_to "Manage Aspects", root_path
= "Manage Aspects"
- else
= link_to @aspect.name, @aspect
......
......@@ -520,6 +520,16 @@ h1.big_text {
.requests h1,
.remove h1 {
display: inline-block; }
.aspect .tip,
.requests .tip,
.remove .tip {
display: none;
color: #999999;
margin-left: 0.5em; }
.aspect .edit_name_field:hover .tip,
.requests .edit_name_field:hover .tip,
.remove .edit_name_field:hover .tip {
display: inline; }
.aspect .aspect_name,
.requests .aspect_name,
.remove .aspect_name {
......
......@@ -694,6 +694,19 @@ h1.big_text
h1
:display inline-block
.tip
:display none
:color #999
:margin
:left 0.5em
.edit_name_field:hover
.tip
:display inline
.aspect_name
:position relative
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment