Fixing fckeditor font-family see #5303

skala
Julio Montoya 13 years ago
parent d3cd8dab95
commit 5b6982522f
  1. 1
      main/inc/lib/fckeditor/editor/css/fck_internal.css
  2. 4
      main/inc/lib/fckeditor/editor/fckeditor.html

@ -33,6 +33,7 @@
html
{
min-height: 100%;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
table.FCK__ShowTableBorders, table.FCK__ShowTableBorders td, table.FCK__ShowTableBorders th

@ -175,7 +175,7 @@ if ( FCKConfig.Debug )
// CSS minified by http://iceyboard.no-ip.org/projects/css_compressor (see _dev/css_compression.txt).
// FCK_MP3 and FCK__Video classes added by Julio Montoya.
var FCK_InternalCSS = FCKTools.FixCssUrls( FCKConfig.BasePath + 'css/',
'html{min-height:100%}' +
'html{min-height:100%; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;}' +
'table.FCK__ShowTableBorders,table.FCK__ShowTableBorders td,table.FCK__ShowTableBorders th{border:#d3d3d3 1px solid}' +
'form{border:1px dotted #F00;padding:2px}' +
'.FCK__Flash{border:#a9a9a9 1px solid;background-position:center center;background-image:url(images/fck_flashlogo.gif);background-repeat:no-repeat;width:80px;height:80px}' +
@ -293,7 +293,7 @@ function WaitForActive( editorInstance, newStatus )
// Gecko and Webkit browsers don't calculate well the IFRAME size so we must
// recalculate it every time the window size changes.
if ( FCKBrowserInfo.IsGecko || ( FCKBrowserInfo.IsSafari && !FCKBrowserInfo.IsSafari3 ) )
if ( FCKBrowserInfo.IsGecko || ( FCKBrowserInfo.IsSafari && !FCKBrowserInfo.IsSafari3 ) )
{
window.onresize = function( e )
{

Loading…
Cancel
Save