rails_kindeditor 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/uploaders/kindeditor/asset_uploader.rb +1 -1
- data/lib/rails_kindeditor/engine.rb +1 -1
- data/lib/rails_kindeditor/version.rb +1 -1
- data/rails_kindeditor.gemspec +0 -1
- data/vendor/assets/javascripts/kindeditor/kindeditor.js +122 -58
- data/vendor/assets/javascripts/kindeditor/lang/ar.js +16 -0
- data/vendor/assets/javascripts/kindeditor/lang/en.js +16 -0
- data/vendor/assets/javascripts/kindeditor/lang/zh_CN.js +23 -7
- data/vendor/assets/javascripts/kindeditor/lang/zh_TW.js +17 -1
- data/vendor/assets/javascripts/kindeditor/plugins/anchor/anchor.js +1 -1
- data/vendor/assets/javascripts/kindeditor/plugins/baidumap/baidumap.js +77 -0
- data/vendor/assets/javascripts/kindeditor/plugins/baidumap/map.html +43 -0
- data/vendor/assets/javascripts/kindeditor/plugins/code/prettify.css +13 -13
- data/vendor/assets/javascripts/kindeditor/plugins/code/prettify.js +28 -28
- data/vendor/assets/javascripts/kindeditor/plugins/filemanager/filemanager.js +1 -1
- data/vendor/assets/javascripts/kindeditor/plugins/filemanager/images/file-64.gif +0 -0
- data/vendor/assets/javascripts/kindeditor/plugins/filemanager/images/folder-64.gif +0 -0
- data/vendor/assets/javascripts/kindeditor/plugins/flash/flash.js +8 -4
- data/vendor/assets/javascripts/kindeditor/plugins/image/image.js +61 -40
- data/vendor/assets/javascripts/kindeditor/plugins/insertfile/insertfile.js +8 -5
- data/vendor/assets/javascripts/kindeditor/plugins/link/link.js +5 -5
- data/vendor/assets/javascripts/kindeditor/plugins/media/media.js +8 -3
- data/vendor/assets/javascripts/kindeditor/plugins/multiimage/images/image.png +0 -0
- data/vendor/assets/javascripts/kindeditor/plugins/multiimage/images/select-files-en.png +0 -0
- data/vendor/assets/javascripts/kindeditor/plugins/multiimage/images/select-files-zh_CN.png +0 -0
- data/vendor/assets/javascripts/kindeditor/plugins/multiimage/images/swfupload.swf +0 -0
- data/vendor/assets/javascripts/kindeditor/plugins/multiimage/multiimage.js +1368 -0
- data/vendor/assets/javascripts/kindeditor/plugins/table/table.js +2 -4
- data/vendor/assets/javascripts/kindeditor/plugins/template/html/1.html +13 -13
- data/vendor/assets/javascripts/kindeditor/plugins/template/html/2.html +41 -41
- data/vendor/assets/javascripts/kindeditor/plugins/template/html/3.html +35 -35
- data/vendor/assets/javascripts/kindeditor/themes/default/default.css +124 -5
- data/vendor/assets/javascripts/kindeditor/themes/default/default.png +0 -0
- data/vendor/assets/javascripts/kindeditor/themes/qq/editor.gif +0 -0
- data/vendor/assets/javascripts/kindeditor/themes/qq/qq.css +143 -0
- data/vendor/assets/javascripts/kindeditor/themes/simple/simple.css +100 -100
- metadata +12 -3
| @@ -67,7 +67,7 @@ KindEditor.plugin('table', function(K) { | |
| 67 67 | 
             
            		//insert or modify table
         | 
| 68 68 | 
             
            		prop : function(isInsert) {
         | 
| 69 69 | 
             
            			var html = [
         | 
| 70 | 
            -
            				'<div style="padding: | 
| 70 | 
            +
            				'<div style="padding:20px;">',
         | 
| 71 71 | 
             
            				//rows, cols
         | 
| 72 72 | 
             
            				'<div class="ke-dialog-row">',
         | 
| 73 73 | 
             
            				'<label for="keRows" style="width:90px;">' + lang.cells + '</label>',
         | 
| @@ -120,7 +120,6 @@ KindEditor.plugin('table', function(K) { | |
| 120 120 | 
             
            			var dialog = self.createDialog({
         | 
| 121 121 | 
             
            				name : name,
         | 
| 122 122 | 
             
            				width : 500,
         | 
| 123 | 
            -
            				height : 300,
         | 
| 124 123 | 
             
            				title : self.lang(name),
         | 
| 125 124 | 
             
            				body : html,
         | 
| 126 125 | 
             
            				beforeRemove : function() {
         | 
| @@ -338,7 +337,7 @@ KindEditor.plugin('table', function(K) { | |
| 338 337 | 
             
            		//modify cell
         | 
| 339 338 | 
             
            		cellprop : function() {
         | 
| 340 339 | 
             
            			var html = [
         | 
| 341 | 
            -
            				'<div style="padding: | 
| 340 | 
            +
            				'<div style="padding:20px;">',
         | 
| 342 341 | 
             
            				//width, height
         | 
| 343 342 | 
             
            				'<div class="ke-dialog-row">',
         | 
| 344 343 | 
             
            				'<label for="keWidth" style="width:90px;">' + lang.size + '</label>',
         | 
| @@ -386,7 +385,6 @@ KindEditor.plugin('table', function(K) { | |
| 386 385 | 
             
            			var dialog = self.createDialog({
         | 
| 387 386 | 
             
            				name : name,
         | 
| 388 387 | 
             
            				width : 500,
         | 
| 389 | 
            -
            				height : 220,
         | 
| 390 388 | 
             
            				title : self.lang('tablecell'),
         | 
| 391 389 | 
             
            				body : html,
         | 
| 392 390 | 
             
            				beforeRemove : function() {
         | 
| @@ -1,14 +1,14 @@ | |
| 1 | 
            -
            <!doctype html>
         | 
| 2 | 
            -
            <html>
         | 
| 3 | 
            -
            <head>
         | 
| 4 | 
            -
            	<meta charset="utf-8" />
         | 
| 5 | 
            -
            </head>
         | 
| 6 | 
            -
            <body>
         | 
| 7 | 
            -
            	<h3>
         | 
| 8 | 
            -
            		<img align="left" height="100" style="margin-right: 10px" width="100" />在此处输入标题
         | 
| 9 | 
            -
            	</h3>
         | 
| 10 | 
            -
            	<p>
         | 
| 11 | 
            -
            		在此处输入内容
         | 
| 12 | 
            -
            	</p>
         | 
| 13 | 
            -
            </body>
         | 
| 1 | 
            +
            <!doctype html>
         | 
| 2 | 
            +
            <html>
         | 
| 3 | 
            +
            <head>
         | 
| 4 | 
            +
            	<meta charset="utf-8" />
         | 
| 5 | 
            +
            </head>
         | 
| 6 | 
            +
            <body>
         | 
| 7 | 
            +
            	<h3>
         | 
| 8 | 
            +
            		<img align="left" height="100" style="margin-right: 10px" width="100" />在此处输入标题
         | 
| 9 | 
            +
            	</h3>
         | 
| 10 | 
            +
            	<p>
         | 
| 11 | 
            +
            		在此处输入内容
         | 
| 12 | 
            +
            	</p>
         | 
| 13 | 
            +
            </body>
         | 
| 14 14 | 
             
            </html>
         | 
| @@ -1,42 +1,42 @@ | |
| 1 | 
            -
            <!doctype html>
         | 
| 2 | 
            -
            <html>
         | 
| 3 | 
            -
            <head>
         | 
| 4 | 
            -
            	<meta charset="utf-8" />
         | 
| 5 | 
            -
            </head>
         | 
| 6 | 
            -
            <body>
         | 
| 7 | 
            -
            	<h3>
         | 
| 8 | 
            -
            		标题
         | 
| 9 | 
            -
            	</h3>
         | 
| 10 | 
            -
            	<table style="width:100%;" cellpadding="2" cellspacing="0" border="1">
         | 
| 11 | 
            -
            		<tbody>
         | 
| 12 | 
            -
            			<tr>
         | 
| 13 | 
            -
            				<td>
         | 
| 14 | 
            -
            					<h3>标题1</h3>
         | 
| 15 | 
            -
            				</td>
         | 
| 16 | 
            -
            				<td>
         | 
| 17 | 
            -
            					<h3>标题1</h3>
         | 
| 18 | 
            -
            				</td>
         | 
| 19 | 
            -
            			</tr>
         | 
| 20 | 
            -
            			<tr>
         | 
| 21 | 
            -
            				<td>
         | 
| 22 | 
            -
            					内容1
         | 
| 23 | 
            -
            				</td>
         | 
| 24 | 
            -
            				<td>
         | 
| 25 | 
            -
            					内容2
         | 
| 26 | 
            -
            				</td>
         | 
| 27 | 
            -
            			</tr>
         | 
| 28 | 
            -
            			<tr>
         | 
| 29 | 
            -
            				<td>
         | 
| 30 | 
            -
            					内容3
         | 
| 31 | 
            -
            				</td>
         | 
| 32 | 
            -
            				<td>
         | 
| 33 | 
            -
            					内容4
         | 
| 34 | 
            -
            				</td>
         | 
| 35 | 
            -
            			</tr>
         | 
| 36 | 
            -
            		</tbody>
         | 
| 37 | 
            -
            	</table>
         | 
| 38 | 
            -
            	<p>
         | 
| 39 | 
            -
            		表格说明
         | 
| 40 | 
            -
            	</p>
         | 
| 41 | 
            -
            </body>
         | 
| 1 | 
            +
            <!doctype html>
         | 
| 2 | 
            +
            <html>
         | 
| 3 | 
            +
            <head>
         | 
| 4 | 
            +
            	<meta charset="utf-8" />
         | 
| 5 | 
            +
            </head>
         | 
| 6 | 
            +
            <body>
         | 
| 7 | 
            +
            	<h3>
         | 
| 8 | 
            +
            		标题
         | 
| 9 | 
            +
            	</h3>
         | 
| 10 | 
            +
            	<table style="width:100%;" cellpadding="2" cellspacing="0" border="1">
         | 
| 11 | 
            +
            		<tbody>
         | 
| 12 | 
            +
            			<tr>
         | 
| 13 | 
            +
            				<td>
         | 
| 14 | 
            +
            					<h3>标题1</h3>
         | 
| 15 | 
            +
            				</td>
         | 
| 16 | 
            +
            				<td>
         | 
| 17 | 
            +
            					<h3>标题1</h3>
         | 
| 18 | 
            +
            				</td>
         | 
| 19 | 
            +
            			</tr>
         | 
| 20 | 
            +
            			<tr>
         | 
| 21 | 
            +
            				<td>
         | 
| 22 | 
            +
            					内容1
         | 
| 23 | 
            +
            				</td>
         | 
| 24 | 
            +
            				<td>
         | 
| 25 | 
            +
            					内容2
         | 
| 26 | 
            +
            				</td>
         | 
| 27 | 
            +
            			</tr>
         | 
| 28 | 
            +
            			<tr>
         | 
| 29 | 
            +
            				<td>
         | 
| 30 | 
            +
            					内容3
         | 
| 31 | 
            +
            				</td>
         | 
| 32 | 
            +
            				<td>
         | 
| 33 | 
            +
            					内容4
         | 
| 34 | 
            +
            				</td>
         | 
| 35 | 
            +
            			</tr>
         | 
| 36 | 
            +
            		</tbody>
         | 
| 37 | 
            +
            	</table>
         | 
| 38 | 
            +
            	<p>
         | 
| 39 | 
            +
            		表格说明
         | 
| 40 | 
            +
            	</p>
         | 
| 41 | 
            +
            </body>
         | 
| 42 42 | 
             
            </html>
         | 
| @@ -1,36 +1,36 @@ | |
| 1 | 
            -
            <!doctype html>
         | 
| 2 | 
            -
            <html>
         | 
| 3 | 
            -
            <head>
         | 
| 4 | 
            -
            	<meta charset="utf-8" />
         | 
| 5 | 
            -
            </head>
         | 
| 6 | 
            -
            <body>
         | 
| 7 | 
            -
            	<p>
         | 
| 8 | 
            -
            		在此处输入内容
         | 
| 9 | 
            -
            	</p>
         | 
| 10 | 
            -
            	<ol>
         | 
| 11 | 
            -
            		<li>
         | 
| 12 | 
            -
            			描述1
         | 
| 13 | 
            -
            		</li>
         | 
| 14 | 
            -
            		<li>
         | 
| 15 | 
            -
            			描述2
         | 
| 16 | 
            -
            		</li>
         | 
| 17 | 
            -
            		<li>
         | 
| 18 | 
            -
            			描述3
         | 
| 19 | 
            -
            		</li>
         | 
| 20 | 
            -
            	</ol>
         | 
| 21 | 
            -
            	<p>
         | 
| 22 | 
            -
            		在此处输入内容
         | 
| 23 | 
            -
            	</p>
         | 
| 24 | 
            -
            	<ul>
         | 
| 25 | 
            -
            		<li>
         | 
| 26 | 
            -
            			描述1
         | 
| 27 | 
            -
            		</li>
         | 
| 28 | 
            -
            		<li>
         | 
| 29 | 
            -
            			描述2
         | 
| 30 | 
            -
            		</li>
         | 
| 31 | 
            -
            		<li>
         | 
| 32 | 
            -
            			描述3
         | 
| 33 | 
            -
            		</li>
         | 
| 34 | 
            -
            	</ul>
         | 
| 35 | 
            -
            </body>
         | 
| 1 | 
            +
            <!doctype html>
         | 
| 2 | 
            +
            <html>
         | 
| 3 | 
            +
            <head>
         | 
| 4 | 
            +
            	<meta charset="utf-8" />
         | 
| 5 | 
            +
            </head>
         | 
| 6 | 
            +
            <body>
         | 
| 7 | 
            +
            	<p>
         | 
| 8 | 
            +
            		在此处输入内容
         | 
| 9 | 
            +
            	</p>
         | 
| 10 | 
            +
            	<ol>
         | 
| 11 | 
            +
            		<li>
         | 
| 12 | 
            +
            			描述1
         | 
| 13 | 
            +
            		</li>
         | 
| 14 | 
            +
            		<li>
         | 
| 15 | 
            +
            			描述2
         | 
| 16 | 
            +
            		</li>
         | 
| 17 | 
            +
            		<li>
         | 
| 18 | 
            +
            			描述3
         | 
| 19 | 
            +
            		</li>
         | 
| 20 | 
            +
            	</ol>
         | 
| 21 | 
            +
            	<p>
         | 
| 22 | 
            +
            		在此处输入内容
         | 
| 23 | 
            +
            	</p>
         | 
| 24 | 
            +
            	<ul>
         | 
| 25 | 
            +
            		<li>
         | 
| 26 | 
            +
            			描述1
         | 
| 27 | 
            +
            		</li>
         | 
| 28 | 
            +
            		<li>
         | 
| 29 | 
            +
            			描述2
         | 
| 30 | 
            +
            		</li>
         | 
| 31 | 
            +
            		<li>
         | 
| 32 | 
            +
            			描述3
         | 
| 33 | 
            +
            		</li>
         | 
| 34 | 
            +
            	</ul>
         | 
| 35 | 
            +
            </body>
         | 
| 36 36 | 
             
            </html>
         | 
| @@ -328,6 +328,11 @@ | |
| 328 328 | 
             
            	width: 16px;
         | 
| 329 329 | 
             
            	height: 16px;
         | 
| 330 330 | 
             
            }
         | 
| 331 | 
            +
            .ke-icon-baidumap {
         | 
| 332 | 
            +
            	background-position: 0px -976px;
         | 
| 333 | 
            +
            	width: 16px;
         | 
| 334 | 
            +
            	height: 16px;
         | 
| 335 | 
            +
            }
         | 
| 331 336 | 
             
            .ke-icon-lineheight {
         | 
| 332 337 | 
             
            	background-position: 0px -992px;
         | 
| 333 338 | 
             
            	width: 16px;
         | 
| @@ -403,6 +408,11 @@ | |
| 403 408 | 
             
            	width: 16px;
         | 
| 404 409 | 
             
            	height: 16px;
         | 
| 405 410 | 
             
            }
         | 
| 411 | 
            +
            .ke-icon-multiimage {
         | 
| 412 | 
            +
            	background-position: 0px -1232px;
         | 
| 413 | 
            +
            	width: 16px;
         | 
| 414 | 
            +
            	height: 16px;
         | 
| 415 | 
            +
            }
         | 
| 406 416 | 
             
            /* container */
         | 
| 407 417 | 
             
            .ke-container {
         | 
| 408 418 | 
             
            	display: block;
         | 
| @@ -651,8 +661,8 @@ | |
| 651 661 | 
             
            	padding: 0 10px;
         | 
| 652 662 | 
             
            	background: url(background.png) repeat scroll 0 0 #F0F0EE;
         | 
| 653 663 | 
             
            	border-bottom: 1px solid #CFCFCF;
         | 
| 654 | 
            -
            	height:  | 
| 655 | 
            -
            	font: 12px/ | 
| 664 | 
            +
            	height: 24px;
         | 
| 665 | 
            +
            	font: 12px/24px "sans serif",tahoma,verdana,helvetica;
         | 
| 656 666 | 
             
            	text-align: left;
         | 
| 657 667 | 
             
            	color: #222;
         | 
| 658 668 | 
             
            	cursor: move;
         | 
| @@ -671,6 +681,7 @@ | |
| 671 681 | 
             
            	font: 12px/1.5 "sans serif",tahoma,verdana,helvetica;
         | 
| 672 682 | 
             
            	text-align: left;
         | 
| 673 683 | 
             
            	overflow: hidden;
         | 
| 684 | 
            +
            	width: 100%;
         | 
| 674 685 | 
             
            }
         | 
| 675 686 | 
             
            .ke-dialog-body textarea {
         | 
| 676 687 | 
             
            	display: block;
         | 
| @@ -745,6 +756,7 @@ | |
| 745 756 | 
             
            	text-align: right;
         | 
| 746 757 | 
             
            	padding:0 0 5px 0;
         | 
| 747 758 | 
             
            	background-color: #FFF;
         | 
| 759 | 
            +
            	width: 100%;
         | 
| 748 760 | 
             
            }
         | 
| 749 761 | 
             
            .ke-dialog-preview,
         | 
| 750 762 | 
             
            .ke-dialog-yes {
         | 
| @@ -825,6 +837,9 @@ | |
| 825 837 | 
             
            	zoom: 1;
         | 
| 826 838 | 
             
            	*display: inline;
         | 
| 827 839 | 
             
            }
         | 
| 840 | 
            +
            .ke-upload-button {
         | 
| 841 | 
            +
            	position: relative;
         | 
| 842 | 
            +
            }
         | 
| 828 843 | 
             
            .ke-upload-area {
         | 
| 829 844 | 
             
            	position: relative;
         | 
| 830 845 | 
             
            	overflow: hidden;
         | 
| @@ -848,7 +863,7 @@ | |
| 848 863 | 
             
            	font: 12px/1 "sans serif",tahoma,verdana,helvetica;
         | 
| 849 864 | 
             
            	border-bottom:1px solid #A0A0A0;
         | 
| 850 865 | 
             
            	padding-left:5px;
         | 
| 851 | 
            -
            	margin-bottom: | 
| 866 | 
            +
            	margin-bottom:20px;
         | 
| 852 867 | 
             
            }
         | 
| 853 868 | 
             
            .ke-tabs-ul  {
         | 
| 854 869 | 
             
            	list-style-image:none;
         | 
| @@ -879,6 +894,110 @@ | |
| 879 894 | 
             
            	background-color: #FFF;
         | 
| 880 895 | 
             
            	color: #000;
         | 
| 881 896 | 
             
            }
         | 
| 897 | 
            +
            /* progressbar */
         | 
| 898 | 
            +
            .ke-progressbar {
         | 
| 899 | 
            +
            	position: relative;
         | 
| 900 | 
            +
            	margin: 0;
         | 
| 901 | 
            +
            	padding: 0;
         | 
| 902 | 
            +
            }
         | 
| 903 | 
            +
            .ke-progressbar-bar {
         | 
| 904 | 
            +
            	border: 1px solid #6FA5DB;
         | 
| 905 | 
            +
            	width: 80px;
         | 
| 906 | 
            +
            	height: 5px;
         | 
| 907 | 
            +
            	margin: 10px 10px 0 10px;
         | 
| 908 | 
            +
            	padding: 0;
         | 
| 909 | 
            +
            }
         | 
| 910 | 
            +
            .ke-progressbar-bar-inner {
         | 
| 911 | 
            +
            	width: 0;
         | 
| 912 | 
            +
            	height: 5px;
         | 
| 913 | 
            +
            	background-color: #6FA5DB;
         | 
| 914 | 
            +
            	overflow: hidden;
         | 
| 915 | 
            +
            	margin: 0;
         | 
| 916 | 
            +
            	padding: 0;
         | 
| 917 | 
            +
            }
         | 
| 918 | 
            +
            .ke-progressbar-percent {
         | 
| 919 | 
            +
            	position: absolute;
         | 
| 920 | 
            +
            	top: 0;
         | 
| 921 | 
            +
            	left: 40%;
         | 
| 922 | 
            +
            	display: none;
         | 
| 923 | 
            +
            }
         | 
| 924 | 
            +
            /* swfupload */
         | 
| 925 | 
            +
            .ke-swfupload-top {
         | 
| 926 | 
            +
            	position: relative;
         | 
| 927 | 
            +
            	margin-bottom: 10px;
         | 
| 928 | 
            +
            	_width: 608px;
         | 
| 929 | 
            +
            }
         | 
| 930 | 
            +
            .ke-swfupload-button {
         | 
| 931 | 
            +
            	height: 23px;
         | 
| 932 | 
            +
            	line-height: 23px;
         | 
| 933 | 
            +
            }
         | 
| 934 | 
            +
            .ke-swfupload-desc {
         | 
| 935 | 
            +
            	padding: 0 10px;
         | 
| 936 | 
            +
            	height: 23px;
         | 
| 937 | 
            +
            	line-height: 23px;
         | 
| 938 | 
            +
            }
         | 
| 939 | 
            +
            .ke-swfupload-startupload {
         | 
| 940 | 
            +
            	position: absolute;
         | 
| 941 | 
            +
            	top: 0;
         | 
| 942 | 
            +
            	right: 0;
         | 
| 943 | 
            +
            }
         | 
| 944 | 
            +
            .ke-swfupload-body {
         | 
| 945 | 
            +
            	overflow: scroll;
         | 
| 946 | 
            +
            	background-color:#FFFFFF;
         | 
| 947 | 
            +
            	border-color: #848484 #E0E0E0 #E0E0E0 #848484;
         | 
| 948 | 
            +
            	border-style: solid;
         | 
| 949 | 
            +
            	border-width: 1px;
         | 
| 950 | 
            +
            	width: auto;
         | 
| 951 | 
            +
            	height: 370px;
         | 
| 952 | 
            +
            	padding: 5px;
         | 
| 953 | 
            +
            }
         | 
| 954 | 
            +
            .ke-swfupload-body .ke-item {
         | 
| 955 | 
            +
            	width: 100px;
         | 
| 956 | 
            +
            	margin: 5px;
         | 
| 957 | 
            +
            }
         | 
| 958 | 
            +
            .ke-swfupload-body .ke-photo {
         | 
| 959 | 
            +
            	position: relative;
         | 
| 960 | 
            +
            	border: 1px solid #DDDDDD;
         | 
| 961 | 
            +
            	background-color:#FFFFFF;
         | 
| 962 | 
            +
            	padding: 10px;
         | 
| 963 | 
            +
            }
         | 
| 964 | 
            +
            .ke-swfupload-body .ke-delete {
         | 
| 965 | 
            +
            	display: block;
         | 
| 966 | 
            +
            	background: url(default.png) no-repeat scroll 0px -688px;
         | 
| 967 | 
            +
            	width: 16px;
         | 
| 968 | 
            +
            	height: 16px;
         | 
| 969 | 
            +
            	position: absolute;
         | 
| 970 | 
            +
            	right: 0;
         | 
| 971 | 
            +
            	top: 0;
         | 
| 972 | 
            +
            	cursor: pointer;
         | 
| 973 | 
            +
            }
         | 
| 974 | 
            +
            .ke-swfupload-body .ke-status  {
         | 
| 975 | 
            +
            	position: absolute;
         | 
| 976 | 
            +
            	left: 0;
         | 
| 977 | 
            +
            	bottom: 5px;
         | 
| 978 | 
            +
            	width: 100px;
         | 
| 979 | 
            +
            	height: 17px;
         | 
| 980 | 
            +
            }
         | 
| 981 | 
            +
            .ke-swfupload-body .ke-message  {
         | 
| 982 | 
            +
            	width: 100px;
         | 
| 983 | 
            +
            	text-align: center;
         | 
| 984 | 
            +
            	overflow: hidden;
         | 
| 985 | 
            +
            	height:17px;
         | 
| 986 | 
            +
            }
         | 
| 987 | 
            +
            .ke-swfupload-body .ke-error  {
         | 
| 988 | 
            +
            	color: red;
         | 
| 989 | 
            +
            }
         | 
| 990 | 
            +
            .ke-swfupload-body .ke-name {
         | 
| 991 | 
            +
            	width: 100px;
         | 
| 992 | 
            +
            	text-align: center;
         | 
| 993 | 
            +
            	overflow: hidden;
         | 
| 994 | 
            +
            	height:16px;
         | 
| 995 | 
            +
            }
         | 
| 996 | 
            +
            .ke-swfupload-body .ke-on {
         | 
| 997 | 
            +
            	border: 1px solid #5690D2;
         | 
| 998 | 
            +
            	background-color: #E9EFF6;
         | 
| 999 | 
            +
            }
         | 
| 1000 | 
            +
             | 
| 882 1001 | 
             
            /* emoticons */
         | 
| 883 1002 | 
             
            .ke-plugin-emoticons {
         | 
| 884 1003 | 
             
            	position: relative;
         | 
| @@ -962,7 +1081,7 @@ | |
| 962 1081 | 
             
            	border-color: #848484 #E0E0E0 #E0E0E0 #848484;
         | 
| 963 1082 | 
             
            	border-style: solid;
         | 
| 964 1083 | 
             
            	border-width: 1px;
         | 
| 965 | 
            -
            	width:  | 
| 1084 | 
            +
            	width: auto;
         | 
| 966 1085 | 
             
            	height: 370px;
         | 
| 967 1086 | 
             
            	padding: 5px;
         | 
| 968 1087 | 
             
            }
         | 
| @@ -1026,4 +1145,4 @@ | |
| 1026 1145 | 
             
            }
         | 
| 1027 1146 | 
             
            .ke-plugin-template .ke-right {
         | 
| 1028 1147 | 
             
            	float: right;
         | 
| 1029 | 
            -
            }
         | 
| 1148 | 
            +
            }
         | 
| Binary file | 
| Binary file | 
| @@ -0,0 +1,143 @@ | |
| 1 | 
            +
            /* container */
         | 
| 2 | 
            +
            .ke-container-qq {
         | 
| 3 | 
            +
            	display: block;
         | 
| 4 | 
            +
            	border: 1px solid #c3c3c3;
         | 
| 5 | 
            +
            	background-color: #FFF;
         | 
| 6 | 
            +
            	overflow: hidden;
         | 
| 7 | 
            +
            	margin: 0;
         | 
| 8 | 
            +
            	padding: 0;
         | 
| 9 | 
            +
            }
         | 
| 10 | 
            +
            /* toolbar */
         | 
| 11 | 
            +
            .ke-container-qq .ke-toolbar {
         | 
| 12 | 
            +
            	border-bottom: 1px solid #c3c3c3;
         | 
| 13 | 
            +
            	background-color: #FFFFFF;
         | 
| 14 | 
            +
            	padding: 2px 5px;
         | 
| 15 | 
            +
            	text-align: left;
         | 
| 16 | 
            +
            	overflow: hidden;
         | 
| 17 | 
            +
            	zoom: 1;
         | 
| 18 | 
            +
            }
         | 
| 19 | 
            +
            .ke-toolbar-icon-url {
         | 
| 20 | 
            +
            	background-image: url(editor.gif);
         | 
| 21 | 
            +
            	width:18px;
         | 
| 22 | 
            +
            	*xwidth:20px;
         | 
| 23 | 
            +
            	height:18px;
         | 
| 24 | 
            +
            	*xheight:20px;
         | 
| 25 | 
            +
            }
         | 
| 26 | 
            +
            .ke-icon-checked{
         | 
| 27 | 
            +
            	background-image: url(../default/default.png);
         | 
| 28 | 
            +
            	width:16px;
         | 
| 29 | 
            +
            	height:16px;
         | 
| 30 | 
            +
            }
         | 
| 31 | 
            +
            .ke-container-qq .ke-icon-bold{
         | 
| 32 | 
            +
            	background-position: 4px 1px;
         | 
| 33 | 
            +
            }
         | 
| 34 | 
            +
            .ke-container-qq .ke-icon-italic{
         | 
| 35 | 
            +
            	background-position: -27px 1px;
         | 
| 36 | 
            +
            }
         | 
| 37 | 
            +
            .ke-container-qq .ke-icon-italic{
         | 
| 38 | 
            +
            	background-position: -28px 1px;
         | 
| 39 | 
            +
            }
         | 
| 40 | 
            +
            .ke-container-qq .ke-icon-underline{
         | 
| 41 | 
            +
            	background-position: -60px 1px;
         | 
| 42 | 
            +
            }
         | 
| 43 | 
            +
            .ke-container-qq .ke-icon-fontname{
         | 
| 44 | 
            +
            	background-position: -95px 1px;
         | 
| 45 | 
            +
            }
         | 
| 46 | 
            +
            .ke-container-qq .ke-icon-fontsize{
         | 
| 47 | 
            +
            	background-position: -128px 1px;
         | 
| 48 | 
            +
            }
         | 
| 49 | 
            +
            .ke-container-qq .ke-icon-forecolor{
         | 
| 50 | 
            +
            	background-position: -159px 1px;
         | 
| 51 | 
            +
            }
         | 
| 52 | 
            +
            .ke-container-qq .ke-icon-hilitecolor{
         | 
| 53 | 
            +
            	background-position: -190px 1px;
         | 
| 54 | 
            +
            }
         | 
| 55 | 
            +
            .ke-container-qq .ke-icon-plug-align{
         | 
| 56 | 
            +
            	background-position: -223px 1px;
         | 
| 57 | 
            +
            }
         | 
| 58 | 
            +
            .plug-align-justifyleft{
         | 
| 59 | 
            +
            	background-position: -350px 1px;
         | 
| 60 | 
            +
            }
         | 
| 61 | 
            +
            .plug-align-justifycenter{
         | 
| 62 | 
            +
            	background-position: -382px 1px;
         | 
| 63 | 
            +
            }
         | 
| 64 | 
            +
            .plug-align-justifyright{
         | 
| 65 | 
            +
            	background-position: -414px 1px;
         | 
| 66 | 
            +
            }
         | 
| 67 | 
            +
            .plug-order-insertorderedlist{
         | 
| 68 | 
            +
            	background-position: -446px 1px;
         | 
| 69 | 
            +
            }
         | 
| 70 | 
            +
            .plug-order-insertunorderedlist{
         | 
| 71 | 
            +
            	background-position: -477px 1px;
         | 
| 72 | 
            +
            }
         | 
| 73 | 
            +
            .plug-indent-indent{
         | 
| 74 | 
            +
            	background-position: -513px 1px;
         | 
| 75 | 
            +
            }
         | 
| 76 | 
            +
            .plug-indent-outdent{
         | 
| 77 | 
            +
            	background-position: -545px 1px;
         | 
| 78 | 
            +
            }
         | 
| 79 | 
            +
            .ke-container-qq .ke-icon-plug-order{
         | 
| 80 | 
            +
            	background-position: -255px 1px;
         | 
| 81 | 
            +
            }
         | 
| 82 | 
            +
            .ke-container-qq .ke-icon-plug-indent{
         | 
| 83 | 
            +
            	background-position: -287px 1px;
         | 
| 84 | 
            +
            }
         | 
| 85 | 
            +
            .ke-container-qq .ke-icon-link{
         | 
| 86 | 
            +
            	background-position: -319px 1px;
         | 
| 87 | 
            +
            }
         | 
| 88 | 
            +
             | 
| 89 | 
            +
            .ke-container-qq .ke-toolbar .ke-outline {
         | 
| 90 | 
            +
            	cursor: default;
         | 
| 91 | 
            +
            	padding:0px;
         | 
| 92 | 
            +
            	border:1px solid #fff;
         | 
| 93 | 
            +
            }
         | 
| 94 | 
            +
            .ke-container-qq .ke-toolbar .ke-on {
         | 
| 95 | 
            +
            	border-left:1px solid white;
         | 
| 96 | 
            +
            	border-top:1px solid white;
         | 
| 97 | 
            +
            	border-right:1px solid gray;
         | 
| 98 | 
            +
            	border-bottom:1px solid gray;
         | 
| 99 | 
            +
            	background-color: #FFFFFF;
         | 
| 100 | 
            +
            }
         | 
| 101 | 
            +
            .ke-container-qq .ke-toolbar .ke-selected {
         | 
| 102 | 
            +
            	border-left:1px solid gray;
         | 
| 103 | 
            +
            	border-top:1px solid gray;
         | 
| 104 | 
            +
            	border-right:1px solid white;
         | 
| 105 | 
            +
            	border-bottom:1px solid white;
         | 
| 106 | 
            +
            	background-color: #FFFFFF;
         | 
| 107 | 
            +
            }
         | 
| 108 | 
            +
            .ke-container-qq .ke-toolbar  .ke-disabled {
         | 
| 109 | 
            +
            	cursor: default;
         | 
| 110 | 
            +
            }
         | 
| 111 | 
            +
             | 
| 112 | 
            +
            .ke-colorpicker-qq{
         | 
| 113 | 
            +
            	background:#fff;
         | 
| 114 | 
            +
            }
         | 
| 115 | 
            +
            /* statusbar */
         | 
| 116 | 
            +
            .ke-container-qq .ke-statusbar {
         | 
| 117 | 
            +
            	display:none;
         | 
| 118 | 
            +
            }
         | 
| 119 | 
            +
            /* menu */
         | 
| 120 | 
            +
            .ke-menu-qq {
         | 
| 121 | 
            +
            	border:1px solid #a6a6a6;
         | 
| 122 | 
            +
            	position:absolute;
         | 
| 123 | 
            +
            	background:#fff;
         | 
| 124 | 
            +
            	-moz-box-shadow:2px 2px 4px #DDDDDD;
         | 
| 125 | 
            +
            	z-index:999;
         | 
| 126 | 
            +
            	left:-400px;
         | 
| 127 | 
            +
            	top:-386px;
         | 
| 128 | 
            +
            	right:218px;
         | 
| 129 | 
            +
            	width:130px;
         | 
| 130 | 
            +
            }
         | 
| 131 | 
            +
            .ke-menu-qq .ke-menu-item {
         | 
| 132 | 
            +
            	padding:0px;
         | 
| 133 | 
            +
            	background:#fff;
         | 
| 134 | 
            +
            }
         | 
| 135 | 
            +
            .ke-menu-qq .ke-menu-item-on {
         | 
| 136 | 
            +
            	border:1px solid #000080;background:#FFEEC2;color:#036;
         | 
| 137 | 
            +
            }
         | 
| 138 | 
            +
            .ke-menu-qq .ke-toolbar .ke-selected {
         | 
| 139 | 
            +
            	border:1px solid #9a9afb;
         | 
| 140 | 
            +
            }
         | 
| 141 | 
            +
            .ke-menu-qq .ke-menu-item-left{
         | 
| 142 | 
            +
            	width:auto;
         | 
| 143 | 
            +
            }
         |