CKEditor 4 tweetabletext 插件

安装次数: 4,043

依赖关系: 0

建议者: 0

安全性: 0

星标: 0

关注者: 0

分支: 0

语言:JavaScript

类型:drupal-library

dev-master 2015-01-20 23:17 UTC

This package is auto-updated.

Last update: 2024-09-06 02:17:21 UTC


README

一个简单的 CKEditor 插件,可以使部分文本可分享到推特。

以下为界面截图

![截图] (http://i.imgur.com/mQAu3wI.png)

![截图] (http://i.imgur.com/38J9RLn.png)

![截图] (http://i.imgur.com/w08LYCz.png)

以下为前端截图

![截图] (http://i.imgur.com/1ATzYJ3.png)

前端 CSS
a.tweetabletext {
  text-decoration: underline;
}
a.tweetabletext:hover {
  background-color: #A9F43B;
  color: #2C4414;
  text-decoration: none;
}
a.tweetabletext::after {
  display: inline-block;
  background: url("http://i.imgur.com/ikC8axw.png") no-repeat center center;
  width: 16px;
  height: 16px;
  content: "\00a0";
  text-decoration: none;
  margin: 0;
  margin-left: 5px;
  right: 0px;
  position: relative;
  padding: 0;
  top: 3px;
}

请随意修改 CSS。

@待办