Home
last modified time | relevance | path

Searched refs:style (Results 1 – 25 of 2156) sorted by relevance

12345678910>>...87

/plugin/diagramsnet/lib/js/diagramly/
DMinimal.js34 div.style.position = 'absolute';
35 div.style.width = '100%';
36 div.style.height = '100%';
37 div.style.border = '1px solid whiteSmoke';
38 div.style.overflowX = 'hidden';
39 div.style.overflowY = 'auto';
135 div.style.cssText = 'position:absolute;left:0;right:0;border-top:1px solid lightgray;' +
159 elt.style.cssText = 'position:absolute;border-top:1px solid lightgray;width:50%;' +
173 div.style.cssText = 'position:absolute;left:0px;width:50%;border-top:1px solid lightgray;' +
177 span.style.cssText = 'position:relative;top:6px;';
[all …]
DExtensions.js4596 var style = 'whiteSpace=wrap;' + (noLblStyle?
4615 return style;
4618 function addAllStyles(style, properties, action, cell, noLblStyle) argument
4622 if (style != null && style != '' && style.charAt(style.length - 1) != ';')
4628 (noLblStyle? (hasStyle(style, 'overflow')? '' : 'overflow=block;blockSpacing=1;') +
4629 (hasStyle(style, 'html')? '' : 'html=1;') + 'fontSize=' + defaultFontSize + ';' +
4632 addStyle(mxConstants.STYLE_FONTSIZE, style, properties, action, cell) +
4633 addStyle(mxConstants.STYLE_FONTFAMILY, style, properties, action, cell) +
4634 addStyle(mxConstants.STYLE_FONTCOLOR, style, properties, action, cell) +
4635 addStyle(mxConstants.STYLE_FONTSTYLE, style, properties, action, cell) +
[all …]
DDialogs.js11 div.style.textAlign = 'center';
12 div.style.whiteSpace = 'nowrap';
13 div.style.paddingTop = '0px';
14 div.style.paddingBottom = '20px';
17 buttons.style.border = '1px solid #d3d3d3';
18 buttons.style.borderWidth = '1px 0px 1px 0px';
19 buttons.style.padding = '10px 0px 20px 0px';
23 container.style.paddingTop = '2px';
39 button.style.overflow = 'hidden';
40 button.style.display = 'inline-block';
[all …]
/plugin/odt/ODT/styles/
DODTMasterPageStyle.php105 $style = new ODTMasterPageStyle();
110 $style->importODTStyleInternal(self::$master_fields, $open, $style->master_style);
116 … $style->importODTStyleInternal(self::$header_footer_fields, $open, $style->style_header);
123 … $style->importODTStyleInternal(self::$header_footer_fields, $open, $style->style_footer);
130 … $style->importODTStyleInternal(self::$header_footer_fields, $open, $style->style_header_left);
137 … $style->importODTStyleInternal(self::$header_footer_fields, $open, $style->style_footer_left);
141 return $style;
150 $style = '';
183 $style = '<style:master-page '.$master.">\n";
185 $style .= '<style:header '.$header.">\n";
[all …]
DODTPageLayoutStyle.php218 $style = new ODTPageLayoutStyle();
223 … $style->importODTStyleInternal(self::$page_layout_fields, $open, $style->page_layout_style);
229 $style->content_header = XMLUtil::getElement ('style:header-style', $childs);
230 $style->content_footer = XMLUtil::getElement ('style:footer-style', $childs);
232 … $style->importODTStyleInternal(self::$layout_props_fields, $open, $style->layout_props);
239 … $style->importODTStyleInternal(self::$bgi_fields, $open, $style->bgi_props);
240 … $style->content_bgi = XMLUtil::getElementContent ('style:background-image', $childs);
246 … $style->importODTStyleInternal(self::$columns_fields, $open, $style->columns_props);
247 … $style->content_columns = XMLUtil::getElementContent ('style:columns', $childs);
253 … $style->importODTStyleInternal(self::$footnote_fields, $open, $style->footnote_props);
[all …]
DODTStyleStyle.php101 $style = '';
113 $style .= $items ['odt_property'].'="'.$items ['value'].'" ';
144 $style = '<'.$element.' '.$style.'>'."\n";
147 $style .= ' <style:paragraph-properties '.$paragraph.'/>'."\n";
149 $style .= ' <style:paragraph-properties '.$paragraph.'>'."\n";
150 … $style .= ' <style:tab-stops><style:tab-stop '.$tab_stop.'/></style:tab-stops>'."\n";
151 $style .= ' </style:paragraph-properties>'."\n";
155 $style .= ' <style:text-properties '.$text.'/>'."\n";
158 $style .= ' <style:table-properties '.$table.'/>'."\n";
161 $style .= ' <style:table-column-properties '.$table_column.'/>'."\n";
[all …]
/plugin/wysiwyg/fckeditor/editor/_source/classes/
Dfcktoolbarstylecombo.js24 var FCKToolbarStyleCombo = function( tooltip, style ) argument
32 this.Style = style ? style : FCK_TOOLBARITEM_ICONTEXT ;
52 var style = allStyles[ styleName ] ;
53 if ( !style.IsCore )
54 styles[ styleName ] = style ;
76 var style = styles[ styleName ] ;
79 var caption = style.GetType() == FCK_STYLE_OBJECT ?
81 FCKToolbarStyleCombo_BuildPreview( style, style.Label || styleName ) ;
85 item.Style = style ;
106 var style = item.Style ;
[all …]
/plugin/callflow/
Dscript.js3 ;style = variable
47 …this.bb = paper.text(x,(y+style.txtsize/2)+10,text).attr({"font-size":style.tooltip.txtsize,"fill"…
53 …per.rect(BB.x-4,BB.y-2,BB.width+8,BB.height+4).attr({"fill":style.tooltip.bgr,"stroke":style.toolt…
129 callActors[aParsedCommands[curCommand][0]] = (style.margin+l_colsminlen)/2+l_colspacing*curActor;
136 callActors[aParsedCommands[curCommand][1]] = (style.margin+l_colsminlen)/2+l_colspacing*curActor;
148 el.style.clear = "both";
163 l_colsminlen = style.cols.minlen;
164 l_colspacing = style.colspacing;
291 20+(title?style.titlesize:0), // y
293 style.cols.height, // height
[all …]
/plugin/diagramsnet/lib/js/grapheditor/
DFormat.js64 imgs[0].style.filter = 'invert(100%)';
68 imgs[0].style.padding = '0px';
69 imgs[0].style.margin = '0 0 0 2px';
73 mxUtils.setPrefixedStyle(imgs[0].style, 'transform', transform);
179 var style = this.editorUi.editor.graph.getCurrentCellStyle(cells[i]);
181 if (mxUtils.getValue(style, mxConstants.STYLE_EDITABLE, '1') != '0')
197 style: {}, containsImage: false, containsLabel: false, fill: true, glass: true,
302 var shape = mxUtils.getValue(state.style, mxConstants.STYLE_SHAPE, null);
304 graph.mergeStyle(state.style, result.style, initial);
313 return !this.isSpecialColor(state.style[mxConstants.STYLE_FILLCOLOR]) &&
[all …]
DDialogs.js10 iframe.style.backgroundColor = 'transparent';
12 iframe.style.borderStyle = 'none';
13 iframe.style.borderWidth = '0px';
14 iframe.style.overflow = 'hidden';
33 input.style.marginBottom = '10px';
38 input.style.marginTop = '10px';
79 mxJSColor.picker.box.style.position = 'relative';
80 mxJSColor.picker.box.style.width = '230px';
81 mxJSColor.picker.box.style.height = '100px';
82 mxJSColor.picker.box.style.paddingBottom = '10px';
[all …]
DToolbar.js65 viewMenu.style.whiteSpace = 'nowrap';
66 viewMenu.style.position = 'relative';
67 viewMenu.style.overflow = 'hidden';
71 viewMenu.style.width = '50px';
75 viewMenu.style.width = '36px';
94 viewMenu.getElementsByTagName('img')[0].style.right = '1px';
95 viewMenu.getElementsByTagName('img')[0].style.top = '5px';
182 img.style.position = 'absolute';
183 img.style.right = '4px';
184 img.style.top = (!EditorUi.compactUi ? 8 : 6) + 'px';
[all …]
/plugin/revealjs/plugin/zoom-js/
Dzoom.js53 var supportsTransforms = 'WebkitTransform' in document.body.style ||
54 'MozTransform' in document.body.style ||
55 'msTransform' in document.body.style ||
56 'OTransform' in document.body.style ||
57 'transform' in document.body.style;
61 document.body.style.transition = 'transform 0.8s ease';
62 document.body.style.OTransition = '-o-transform 0.8s ease';
63 document.body.style.msTransition = '-ms-transform 0.8s ease';
64 document.body.style.MozTransition = '-moz-transform 0.8s ease';
65 document.body.style.WebkitTransition = '-webkit-transform 0.8s ease';
[all …]
/plugin/yuriigantt/3rd/dhtmlxgantt/ext/
Ddhtmlxgantt_fullscreen.js13style,o),l={overflow:t.style.overflow,padding:t.style.padding?t.style.padding:null,paddingTop:t.st…
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/
Ddhtmlxgantt_fullscreen.js156 while (parent && parent.style) {
159 originalPositioning: parent.style.position
161 parent.style.position = "static";
168 record.element.style.position = record.originalPositioning;
175 updateSizes(root.style, backupElementSizes);
177 overflow: body.style.overflow,
178 padding: body.style.padding ? body.style.padding : null,
179 paddingTop: body.style.paddingTop ? body.style.paddingTop : null,
180 paddingRight: body.style.paddingRight ? body.style.paddingRight : null,
181 paddingBottom: body.style.paddingBottom ? body.style.paddingBottom : null,
[all …]
/plugin/godiag/
Dsyntax.php48 var $style = array( variable in syntax_plugin_godiag
82 $this->style['ttfont'] = dirname(__FILE__).'/Vera.ttf';
271 $dimh=($this->dgm['gridh']-1)*$this->style['line_sp']+$this->style['edge_sp']*2+1;
272 $dimv=($this->dgm['gridv']-1)*$this->style['line_sp']+$this->style['edge_sp']*2+1;
274 $dimh += $this->style['coord_sp'];
275 $dimv += $this->style['coord_sp'];
284 if($this->dgm['board_size'] > $this->style['board_max'])
285 return $this->error_box('board too large (max is ' . $this->style['board_max'] . ')');
314 $md5hash_png=md5($str_for_hash_img . '!' . serialize($this->style));
411 …$this->circ($im, $coords[0], $coords[1], $this->style['hoshi_radius'], $this->style['line_acolor']…
[all …]
/plugin/fckg/fckeditor/editor/skins/default/
Dfck_dialog_ie6.js37 child.style.width = Math.max( 0, fckDlg.offsetWidth - 16 - 16 ) ; // -left -right
38 child.style.height = Math.max( 0, fckDlg.clientHeight - 20 - 2 ) ; // -bottom -top
43 child.style.width = Math.max( 0, fckDlg.offsetWidth - 16 - 16 + 4 ) ; // -left -right + 4
44 child.style.height = Math.max( 0, fckDlg.clientHeight - 20 - 2 + 4 ) ; // -bottom -top + 4
48 child.style.left = Math.max( 0, fckDlg.clientWidth - 16 ) ;
52 child.style.width = Math.max( 0, fckDlg.clientWidth - 16 - 16 ) ;
56 child.style.height = Math.max( 0, fckDlg.clientHeight - 16 - 51 ) ;
60 child.style.left = Math.max( 0, fckDlg.clientWidth - 16 ) ;
61 child.style.height = Math.max( 0, fckDlg.clientHeight - 16 - 51 ) ;
65 child.style.top = Math.max( 0, fckDlg.clientHeight - 51 ) ;
[all …]
/plugin/fckg/fckeditor/editor/skins/silver/
Dfck_dialog_ie6.js37 child.style.width = Math.max( 0, fckDlg.offsetWidth - 16 - 16 ) ; // -left -right
38 child.style.height = Math.max( 0, fckDlg.clientHeight - 20 - 2 ) ; // -bottom -top
43 child.style.width = Math.max( 0, fckDlg.offsetWidth - 16 - 16 + 4 ) ; // -left -right + 4
44 child.style.height = Math.max( 0, fckDlg.clientHeight - 20 - 2 + 4 ) ; // -bottom -top + 4
48 child.style.left = Math.max( 0, fckDlg.clientWidth - 16 ) ;
52 child.style.width = Math.max( 0, fckDlg.clientWidth - 16 - 16 ) ;
56 child.style.height = Math.max( 0, fckDlg.clientHeight - 16 - 51 ) ;
60 child.style.left = Math.max( 0, fckDlg.clientWidth - 16 ) ;
61 child.style.height = Math.max( 0, fckDlg.clientHeight - 16 - 51 ) ;
65 child.style.top = Math.max( 0, fckDlg.clientHeight - 51 ) ;
[all …]
/plugin/odt/ODT/css/
Dcssborder.php53 static public function getShorthandValues ($value, &$width, &$style, &$color) { argument
55 $style = NULL;
62 $style = $value;
110 $style = $values [$index];
153 $style = NULL;
155 self::getShorthandValues ($properties ['border'], $width, $style, $color);
162 if (!empty($style)) {
163 $bl_style = $style;
164 $br_style = $style;
165 $bb_style = $style;
[all …]
/plugin/dwcommits/
Dscript.js9 if(d.style.display && d.style.display == 'block') {
10 d.style.display="none";
13 d.style.display="block";
16 return d.style.display;
24 dtop.style.display = which;
25 dma.style.display = which;
57 d.style.display = 'none';
74 if(!dom.style.height) {
75 dom.style.height = '200px';
78 var h = parseInt(dom.style.height);
[all …]
/plugin/diagramsnet/lib/shapes/
DmxArrows.js50 …var dy = h * 0.5 * Math.max(0, Math.min(1, parseFloat(mxUtils.getValue(this.style, 'dy', this.dy))…
51 var dx = Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
52 …var notch = Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'notch', this.notch)))…
53 var headCrossline = mxUtils.getValue(this.style, 'headCrossline', false);
54 var tailCrossline = mxUtils.getValue(this.style, 'tailCrossline', false);
89 if (mxUtils.getValue(this.style, 'boundedLbl', false))
97 if (mxUtils.getValue(this.style, 'flipH', false))
105 if (mxUtils.getValue(this.style, 'flipV', false))
116 dy = w * 0.5 * Math.max(0, Math.min(1, parseFloat(mxUtils.getValue(this.style, 'dy', this.dy))));
117 dx = Math.max(0, Math.min(h, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
[all …]
/plugin/html2pdf/html2pdf/html2ps/unittest/
Dtest.table.border.php22 $this->assertEqual($table_border->left->style , BS_SOLID);
23 $this->assertEqual($table_border->right->style , BS_SOLID);
24 $this->assertEqual($table_border->top->style , BS_SOLID);
25 $this->assertEqual($table_border->bottom->style , BS_SOLID);
34 $this->assertEqual($cell1_border->left->style , BS_SOLID);
35 $this->assertEqual($cell1_border->right->style , BS_SOLID);
36 $this->assertEqual($cell1_border->top->style , BS_SOLID);
37 $this->assertEqual($cell1_border->bottom->style , BS_SOLID);
50 $this->assertEqual($cell2_border->left->style , BS_SOLID);
51 $this->assertEqual($cell2_border->right->style , BS_SOLID);
[all …]
/plugin/freechat/phpfreechat/data/public/js/
Dpfcprompt.js26 this.box.style.position = 'absolute';
27 this.box.style.zIndex = 100;
28 this.box.style.display = 'none';
31 this.box.style.overflow = 'auto';
82 this.bgbox.style.opacity = '.7';
83 this.bgbox.style.position = 'absolute';
84 this.bgbox.style.backgroundColor = '#555';
85 this.bgbox.style.filter = 'alpha(opacity=70)';
86 this.bgbox.style.display = 'none';
87 this.bgbox.style.zIndex = 50;
[all …]
/plugin/lightbox/
Dscript.js178 …objLoadingImage.style.top = (arrayPageScroll[1] + ((arrayPageSize[3] - 35 - objLoadingImage.height…
179 objLoadingImage.style.left = (((arrayPageSize[0] - 20 - objLoadingImage.width) / 2) + 'px');
180 objLoadingImage.style.display = 'block';
184 objOverlay.style.height = (arrayPageSize[1] + 'px');
185 objOverlay.style.display = 'block';
200 objLightbox.style.top = (lightboxTop < 0) ? "0px" : lightboxTop + "px";
201 objLightbox.style.left = (lightboxLeft < 0) ? "0px" : lightboxLeft + "px";
204 objLightboxDetails.style.width = imgPreload.width + 'px';
207 objCaption.style.display = 'block';
211 objCaption.style.display = 'none';
[all …]
/plugin/wysiwyg/fckeditor/editor/_source/internals/
Dfckstyles.js29 ApplyStyle : function( style ) argument
31 if ( typeof style == 'string' )
32 style = this.GetStyles()[ style ] ;
34 if ( style )
36 if ( style.GetType() == FCK_STYLE_OBJECT )
37 style.ApplyToObject( FCKSelection.GetSelectedElement() ) ;
39 style.ApplyToSelection( FCK.EditorWindow ) ;
45 RemoveStyle : function( style ) argument
47 if ( typeof style == 'string' )
48 style = this.GetStyles()[ style ] ;
[all …]
/plugin/html2pdf/html2pdf/html2ps/
Dfont.resolver.class.php37 function font_resolved($family, $weight, $style, $encoding) { argument
41 isset($this->ps_fonts[$family][$weight][$style]) and
42 isset($this->ps_fonts[$family][$weight][$style][$encoding]);
51 function resolve_font($family, $weight, $style, $encoding) { argument
52 if (!$this->font_resolved($family, $weight, $style, $encoding)) {
53 $this->ps_fonts[$family][$weight][$style][$encoding] = 'font'.$this->ps_fonts_counter;
56 return $this->ps_fonts[$family][$weight][$style][$encoding];
105 function get_global_encoding_override($weight, $style, $encoding) { argument
106 return $this->get_family_encoding_override(" ", $weight, $style, $encoding);
109 function get_family_encoding_override($family, $weight, $style, $encoding) { argument
[all …]

12345678910>>...87