re-add the feedback tab as link to hylo
This commit is contained in:
parent
63274e8454
commit
1d3e328801
2 changed files with 26 additions and 1 deletions
25
app/assets/stylesheets/feedback.css.erb
Normal file
25
app/assets/stylesheets/feedback.css.erb
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
.unauthenticated .feedback-icon {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.feedback-icon {
|
||||||
|
position: fixed;
|
||||||
|
background-image: url(<%= asset_data_uri 'feedback_sprite.png' %>);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
color:#FFFFFF;
|
||||||
|
cursor:pointer;
|
||||||
|
height:110px;
|
||||||
|
left:0;
|
||||||
|
margin-left:0px;
|
||||||
|
text-indent:-100000px;
|
||||||
|
top:65%;
|
||||||
|
width:25px;
|
||||||
|
z-index:100000;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.feedback-icon:hover {
|
||||||
|
background-position: 0 -110px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
<body class="<%= authenticated? ? "authenticated" : "unauthenticated" %>">
|
<body class="<%= authenticated? ? "authenticated" : "unauthenticated" %>">
|
||||||
|
|
||||||
|
<a class='feedback-icon' target='_blank' href='https://hylo.com/c/metamaps'></a>
|
||||||
|
|
||||||
<%= content_tag :div, class: "main" do %>
|
<%= content_tag :div, class: "main" do %>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue