Bootstrap Glyphicon按钮字体更改。

时间:2017-10-18 15:35:01

标签: ruby-on-rails sass haml

我有代码:

.pull-right= link_to content_tag(:i, Search, class: "glyphicon glyphicon-chevron-down"), '#', id: "searchit"

我想改变"的字体搜索"除了Times New Roman之外的其他东西,我也不知道如何改变它。 Here's what it looks like atm.

我已经看了一下这个安静,我似乎无法弄清楚haml&的组合是怎么做的。上海社会科学院。对此也很安静。

1 个答案:

答案 0 :(得分:0)

为什么不首先放置glyphicon,然后使用该类放置文本和样式文本。像这样的东西

  .searchtext{
           //put font css here
   }

然后

  lst = [item.lower() for item in df2.Title.tolist()]
  end = len(lst)
  def func(row):
    content = row[:2500].lower()
    for i, item in enumerate(lst):
      if item in content:
        return i
    end += 1
    return end
  df1 = df1.assign(idx=df1.Content.apply(func))

  res = pd.concat([df1.set_index('idx'), df2], axis=1)