From 78514a784cdd0123d65dfacbd1c2a07d4cd01307 Mon Sep 17 00:00:00 2001 From: Mateus Rambo Strey <mars11@inf.ufpr.br> Date: Thu, 10 Mar 2016 11:45:45 -0300 Subject: [PATCH] change feedback button --- .../stylesheets/application/feedbacks.scss | 26 ++++++++++++++++--- .../shared/application/_feedback.html.erb | 4 +-- 2 files changed, 24 insertions(+), 6 deletions(-) diff --git a/app/assets/stylesheets/application/feedbacks.scss b/app/assets/stylesheets/application/feedbacks.scss index b779a8b9..6e6e94f9 100644 --- a/app/assets/stylesheets/application/feedbacks.scss +++ b/app/assets/stylesheets/application/feedbacks.scss @@ -1,7 +1,25 @@ /** Feedback Buttons **/ -.report_bug, .send_feedback {position: fixed; bottom: 0; height: 30px; width: auto; padding: 5px; z-index: 999;} -.report_bug {left: 25%; background-color: #730E15; color: white;} -.send_feedback {right: 25%; background-color: #ffae0d; color: black;} +// .report_bug, .send_feedback {position: fixed; bottom: 0; height: 30px; width: auto; padding: 5px; z-index: 999;} +// .report_bug {left: 25%; background-color: #730E15; color: white;} +// .send_feedback {right: 25%; background-color: #ffae0d; color: black;} +.report_bug { + position: fixed; + bottom: 0; + color:maroon !important; + text-shadow:1px 1px 0 white, + -1px -1px 0 white, + 1px -1px 0 white, + -1px 1px 0 white, + 0px 1px 0 white, + 1px 0px 0 white, + 0px -1px 0 white, + -1px 0px 0 white; + width: auto; + text-align: center; + padding: 5px; + z-index: 999; + right: 0; +} /** Forms **/ -.feedback-modal-form-textarea { height: 200px; } \ No newline at end of file +.feedback-modal-form-textarea { height: 200px; } diff --git a/app/views/shared/application/_feedback.html.erb b/app/views/shared/application/_feedback.html.erb index f5ee2e05..7b1b1d3d 100644 --- a/app/views/shared/application/_feedback.html.erb +++ b/app/views/shared/application/_feedback.html.erb @@ -1,2 +1,2 @@ -<a href="#report_bug" class="report_bug">Está com problemas? Clique aqui e nos mantenha informado.</a> -<!-- <a href="#send_feedback" class="send_feedback">Mande seu feedback!</a> --> \ No newline at end of file +<a href="#report_bug" class="report_bug"><i class="fa fa-bug" style="font-size: 3em;"></i><br/>relatar problema</a> +<!-- <a href="#send_feedback" class="send_feedback">Mande seu feedback!</a> --> -- GitLab