CKEditor Custom Plugins Button

前端 未结 7 906
猫巷女王i
猫巷女王i 2020-12-22 22:41

I\'ve written a custom plugin for CKEditor--successful on all fronts, save one currently: I can\'t, for the life of me, figure out how to customize the image on the button

7条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-22 23:18

    Regarding font awesome, I was able to achieve this using CSS:

    span.cke_button_icon.cke_button__bold_icon {
        position: relative !important;
        background-image: none !important;
    
      &:after {
        font-family: FontAwesome;
        position: absolute;
        font-size: 16px;
        content: "\f032";
      }
    }
    

提交回复
热议问题