关闭引导程序警报

时间:2015-08-19 08:54:21

标签: javascript css ruby-on-rails twitter-bootstrap

我使用https://github.com/thoughtbot/paul_revere gem来管理我的rails应用中的公告。这个宝石有部分显示公告。它看起来像这样:

<% if announcement_visible?(current_announcement) %>
  <div id="announcement">
    <span><%= current_announcement.body.html_safe %></span>
    <span class="hide">
      <%= link_to "hide", "#", onclick: "hideAnnouncement('#{current_announcement.to_cookie_key}')" %>
    </span>
  </div>
<% end %>

我为它添加了一点css:

#announcement{
  position: relative;
  left: 10px;
  width: 50%;

  @extend .alert;
  @extend .alert-dismissible;
  @extend .alert-info;
  @extend .animated;
  @extend .fadeInUp;
}

它看起来像这样: enter image description here

但是我无法使其隐藏链接以隐藏警报。我也想要x而不是隐藏。有没有办法用纯css做这个,而没有覆盖gem partial?

1 个答案:

答案 0 :(得分:1)

如果您无法在源代码或$ git checkout master $ git stash pop 文件中更改它,是否可以添加此jQuery位?

gem