Skip to content

Commit

Permalink
Make specialchars table cells equal in width.
Browse files Browse the repository at this point in the history
  • Loading branch information
danyaPostfactum committed Apr 2, 2014
1 parent 7b99019 commit 8722ea0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/specialchar/dialogs/specialchar.js
Expand Up @@ -164,7 +164,7 @@ CKEDITOR.dialog.add( 'specialchar', function( editor ) {

return {
title: lang.title,
minWidth: 430,
minWidth: 460,
minHeight: 280,
buttons: [ CKEDITOR.dialog.cancelButton ],
charColumns: 17,
Expand All @@ -175,7 +175,7 @@ CKEDITOR.dialog.add( 'specialchar', function( editor ) {

var charsTableLabel = CKEDITOR.tools.getNextId() + '_specialchar_table_label';
var html = [ '<table role="listbox" aria-labelledby="' + charsTableLabel + '"' +
' style="width: 320px; height: 100%; border-collapse: separate;"' +
' style="width: 376px; height: 100%; border-collapse: separate; table-layout: fixed;"' +
' align="center" cellspacing="2" cellpadding="2" border="0">' ];

var i = 0,
Expand Down Expand Up @@ -236,7 +236,7 @@ CKEDITOR.dialog.add( 'specialchar', function( editor ) {
{
type: 'hbox',
align: 'top',
widths: [ '320px', '90px' ],
widths: [ 'auto', '74px' ],
children: [
{
type: 'html',
Expand Down

0 comments on commit 8722ea0

Please sign in to comment.