Home
last modified time | relevance | path

Searched refs:style (Results 2126 – 2150 of 2224) sorted by path

1...<<818283848586878889

/plugin/wysiwyg/fckeditor/_samples/lasso/
H A Dsampleposteddata.lasso38 <tr style="FONT-WEIGHT: bold; COLOR: #dddddd; BACKGROUND-COLOR: #999999">
45 <td width="100%" style="white-space:pre">[#this->second]</td>
/plugin/wysiwyg/fckeditor/editor/_source/classes/
H A Dfckcontextmenu.js133 overrideButton.style.cssText = 'position:absolute;top:' + ( e.clientY - 2 ) +
H A Dfckdomrange.js290 eEndSpan.style.display = 'none' ;
305 eStartSpan.style.display = 'none' ;
H A Dfckicon.js68 eIconImage.style.top = sPos ;
76 eIcon.style.backgroundPosition = '0px ' + sPos ;
77 eIcon.style.backgroundImage = 'url("' + this.Path + '")' ;
H A Dfckpanel.js103 this.MainNode.style.cssFloat = this.IsRTL ? 'right' : 'left' ;
H A Dfckspecialcombo.js43 this._PanelBox.style.width = this.PanelWidth + 'px' ;
105 oDiv.style.width = '100%' ;
108 oDiv.style.backgroundColor = bgColor ;
237 oField.style.width = this.FieldWidth + 'px' ;
348 oPanelBox.style.height = iMaxHeight + 'px' ;
354 oPanelBox.style.height = '' ;
H A Dfckstyle.js576 var elementStyle = element.style.cssText ;
593 element.style.cssText = elementStyle.replace( regex, '' ) ;
678 el.style.cssText = this.GetFinalStyleValue() ;
1104 for ( var style in stylesDef )
1105 stylesText += style + ':' + stylesDef[style] + ';' ;
H A Dfcktoolbar.js35 …ototype.AddButton = function( name, label, tooltip, iconPathOrStripInfoArrayOrIndex, style, state ) argument
40 …var oButton = new FCKToolbarButtonUI( name, label, tooltip, iconPathOrStripInfoArrayOrIndex, style
66 e.style.styleFloat = e.style.cssFloat = ( FCKLang.Dir == 'ltr' ? 'left' : 'right' ) ;
H A Dfcktoolbarbreak_gecko.js33 oBreakDiv.style.clear = oBreakDiv.style.cssFloat = FCKLang.Dir == 'rtl' ? 'right' : 'left' ;
H A Dfcktoolbarbreak_ie.js35 oBreakDiv.style.clear = FCKLang.Dir == 'rtl' ? 'left' : 'right' ;
H A Dfcktoolbarbutton.js24 var FCKToolbarButton = function( commandName, label, tooltip, style, sourceView, contextSensitive, … argument
29 this.Style = style ;
H A Dfcktoolbarbuttonui.js24 var FCKToolbarButtonUI = function( name, label, tooltip, iconPathOrStripInfoArray, style, state ) argument
29 this.Style = style || FCK_TOOLBARITEM_ONLYICON ;
H A Dfcktoolbarfontformatcombo.js24 var FCKToolbarFontFormatCombo = function( tooltip, style ) argument
32 this.Style = style ? style : FCK_TOOLBARITEM_ICONTEXT ;
74 var style = FCKStyles.GetStyle( '_FCK_' + elementName ) ;
75 if ( style )
77 style.Label = oNames[ elementName ] ;
78 styles[ '_FCK_' + elementName ] = style ;
101 var style = item.Style ;
103 if ( style.CheckElementRemovable( blockElement ) )
105 targetSpecialCombo.SetLabel( style.Label ) ;
130 var style = item.Style ;
[all …]
H A Dfcktoolbarfontscombo.js24 var FCKToolbarFontsCombo = function( tooltip, style ) argument
29 this.Style = style ? style : FCK_TOOLBARITEM_ICONTEXT ;
62 var style = FCKTools.CloneObject( baseStyle ) ;
64 style.SetVariable( 'Font', font ) ;
65 style.Label = caption ;
67 styles[ caption ] = style ;
89 var style = item.Style ;
91 if ( style.CheckActive( path ) )
H A Dfcktoolbarfontsizecombo.js24 var FCKToolbarFontSizeCombo = function( tooltip, style ) argument
29 this.Style = style ? style : FCK_TOOLBARITEM_ICONTEXT ;
64 var style = FCKTools.CloneObject( baseStyle ) ;
65 style.SetVariable( 'Size', font ) ;
66 style.Label = caption ;
68 styles[ caption ] = style ;
H A Dfcktoolbarpanelbutton.js25 var FCKToolbarPanelButton = function( commandName, label, tooltip, style, icon ) argument
36 …var oUIButton = this._UIButton = new FCKToolbarButtonUI( commandName, label, tooltip, oIcon, style
54 eLineDiv.style.position = 'absolute' ;
55 eLineDiv.style.top = '0px' ;
59 eLine.style.position = 'absolute' ;
77 oButton.LineImg.style.width = ( e.offsetWidth - 2 ) + 'px' ;
H A Dfcktoolbarstylecombo.js32 this.Style = style ? style : FCK_TOOLBARITEM_ICONTEXT ;
53 if ( !style.IsCore )
54 styles[ styleName ] = style ;
76 var style = styles[ styleName ] ;
81 FCKToolbarStyleCombo_BuildPreview( style, style.Label || styleName ) ;
85 item.Style = style ;
106 var style = item.Style ;
110 targetSpecialCombo.SetLabel( style.Label || style.Name ) ;
150 var style = item.Style ;
154 item.style.display = '' ;
[all …]
/plugin/wysiwyg/fckeditor/editor/_source/commandclasses/
H A Dfck_othercommands.js248 e.style.pageBreakAfter = 'always' ;
H A Dfckfitwindow.js32 var eEditorFrameStyle = eEditorFrame.style ;
37 var eBodyStyle = eBody.style ;
60 eParent.style.zIndex = FCKConfig.FloatingPanelsZIndex - 1 ;
67 this.documentElementOverflow = eDocEl.style.overflow ;
68 eDocEl.style.overflow = 'hidden' ;
139 eDocEl.style.overflow = this.documentElementOverflow ;
176 var eEditorFrameStyle = window.frameElement.style ;
H A Dfckindentcommands.js124 var indent = parseInt( firstBlock.style[this.IndentCSSProperty], 10 ) ;
176 var currentOffset = parseInt( block.style[this.IndentCSSProperty], 10 ) ;
182 … block.style[this.IndentCSSProperty] = currentOffset ? currentOffset + FCKConfig.IndentUnit : '' ;
H A Dfckjustifycommands.js129 var style = block.style ;
131 style.textAlign = this.AlignValue ;
134 style.textAlign = '' ;
135 if ( style.cssText.length == 0 )
H A Dfcktextcolorcommand.js57 var style = FCKStyles.GetStyle( '_FCK_' +
61 FCK.Styles.RemoveStyle( style ) ;
64 style.SetVariable( 'Color', color ) ;
65 FCKStyles.ApplyStyle( style ) ;
123 oTable.style.tableLayout = 'fixed' ;
145 oDiv.style.width = '96%' ;
182 oDiv.style.width = '96%' ;
/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfck_ie.js335 var oDivStyle = oDiv.style ;
H A Dfckdocumentprocessor.js95 …if ( eDIV.style.pageBreakAfter == 'always' && eDIV.childNodes.length == 1 && eDIV.childNodes[0].st…
160 …placeHolderImage.style.width = FCKTools.ConvertHtmlSizeToStyle( originalEmbed.getAttribute( 'width…
163 …placeHolderImage.style.height = FCKTools.ConvertHtmlSizeToStyle( originalEmbed.getAttribute( 'heig…
172 if ( fakeElement.style.width.length > 0 )
173 e.width = FCKTools.ConvertStyleSizeToHtml( fakeElement.style.width ) ;
175 if ( fakeElement.style.height.length > 0 )
176 e.height = FCKTools.ConvertStyleSizeToHtml( fakeElement.style.height ) ;
H A Dfckdomtools.js490 return element.style.cssText ;
879 var style = element.style ;
881 style[ styleName ] = styleDict[ styleName ] ;

1...<<818283848586878889