added tooltip text to public icon
This commit is contained in:
parent
aa628c090d
commit
fa9caf00ca
3 changed files with 11 additions and 5 deletions
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
.public_badge
|
.public_badge
|
||||||
- if post.public?
|
- if post.public?
|
||||||
= image_tag 'icons/globe.png'
|
= image_tag 'icons/globe.png', :title => "public post"
|
||||||
|
|
||||||
.content
|
.content
|
||||||
.from
|
.from
|
||||||
|
|
|
||||||
|
|
@ -153,6 +153,14 @@ var View = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
public_badge: {
|
||||||
|
bind: function() {
|
||||||
|
$(".public_badge img").tipsy({
|
||||||
|
live: true
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
whatIsThis: {
|
whatIsThis: {
|
||||||
bind: function() {
|
bind: function() {
|
||||||
$(".what_is_this").tipsy({
|
$(".what_is_this").tipsy({
|
||||||
|
|
|
||||||
|
|
@ -1970,8 +1970,6 @@ h3,h4
|
||||||
:background
|
:background
|
||||||
:color #FEFFF0
|
:color #FEFFF0
|
||||||
|
|
||||||
:background -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFFFF7), to(#FEFFF0))
|
|
||||||
:background -moz-linear-gradient(0% 100% 90deg,#FFFFF7, #FEFFF0)
|
|
||||||
|
|
||||||
&:hover
|
&:hover
|
||||||
:background #FEFFE3
|
:background
|
||||||
|
:color #FEFFE3
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue