简体   繁体   中英

Summernote font-family and color is not working

在此处输入图像描述

On selecting this works but color is not shown and looks ugly.

I have this code in my js file:

#= require jquery
#= require jquery-ui
#= require bootstrap/bootstrap-tooltip
#= require summernote

 $(document).ready ->
  $('#post_body').each ->
    $(this).summernote
      fontNames: ['Arial', 'Arial Black', 'Comic Sans MS', 'Courier New'],
      fontNamesIgnoreCheck: ['Arial', 'Arial Black', 'Comic Sans MS', 'Courier New']
      height: 250
      toolbar: [
          ['style', ['style']]
          ['font', ['bold', 'underline', 'clear']]
          ['fontname', ['fontname']]
          ['color', ['color']]
          ['para', ['ul', 'ol', 'paragraph']]
          ['table', ['table']]
          ['insert', ['link', 'picture', 'video']]
          ['view', ['fullscreen', 'codeview', 'help']]
  ]

In my Gemfile:

gem 'summernote-rails', '~> 0.8.1.1'
gem 'bootstrap-tooltip-rails'
gem 'jquery-ui-rails'
gem 'bootstrap-sass'
gem 'font-awesome-sass-rails', '3.0.2.2'

In my css file, i have imported:

@import "bootstrap";
@import "summernote";
@import "font-awesome";

And, another problem is like, when I select font-family it doesn't changes , it remains default 'sans-serif'

What might be the problem?? Is there anything I'm missing?

Check the references and clear duplicate references. I solve same problem by that way.

如果可以的话,换成summernote-lite。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM