Skip to content

Commit 8722ea0

Browse files
Make specialchars table cells equal in width.
1 parent 7b99019 commit 8722ea0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugins/specialchar/dialogs/specialchar.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ CKEDITOR.dialog.add( 'specialchar', function( editor ) {
164164

165165
return {
166166
title: lang.title,
167-
minWidth: 430,
167+
minWidth: 460,
168168
minHeight: 280,
169169
buttons: [ CKEDITOR.dialog.cancelButton ],
170170
charColumns: 17,
@@ -175,7 +175,7 @@ CKEDITOR.dialog.add( 'specialchar', function( editor ) {
175175

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

181181
var i = 0,
@@ -236,7 +236,7 @@ CKEDITOR.dialog.add( 'specialchar', function( editor ) {
236236
{
237237
type: 'hbox',
238238
align: 'top',
239-
widths: [ '320px', '90px' ],
239+
widths: [ 'auto', '74px' ],
240240
children: [
241241
{
242242
type: 'html',

0 commit comments

Comments
 (0)