tinyce table

This commit is contained in:
life
2014-06-17 19:46:34 +08:00
parent a5b525affd
commit a0acd31fcf
5 changed files with 16 additions and 2 deletions

View File

@ -7100,3 +7100,7 @@ td.visible-print {
.btn {
border-radius: 0;
}
.mce-item-table, .mce-item-table td, .mce-item-table th, .mce-item-table caption {
border: 1px solid #9B9898;
border-collapse: collapse;
}

View File

@ -10,3 +10,8 @@ html {
* {
font-family: 'Open Sans', 'Helvetica Neue', Arial, 'Hiragino Sans GB', 'Microsoft YaHei', 'WenQuanYi Micro Hei', sans-serif;
}
.mce-item-table, .mce-item-table td, .mce-item-table th, .mce-item-table caption {
border: 1px solid #9B9898;
border-collapse: collapse;
}

View File

@ -22,3 +22,8 @@ html {
* {
font-family: @fontFamily;
}
.mce-item-table, .mce-item-table td, .mce-item-table th, .mce-item-table caption {
border: 1px solid #9B9898;
border-collapse: collapse;
}

View File

@ -1831,7 +1831,7 @@ define("tinymce/tableplugin/Plugin", [
function insertTable(cols, rows) {
var y, x, html;
html = '<table><tbody>';
html = '<table style="width: 100%"><tbody>';
for (y = 0; y < rows; y++) {
html += '<tr>';

File diff suppressed because one or more lines are too long