Home
last modified time | relevance | path

Searched refs:tooltip (Results 26 – 50 of 343) sorted by path

12345678910>>...14

/plugin/bpmnioeditor/
H A Dstyle.css85 --tooltip-error-background-color: var(--red-base-62-lighten-90);
86 --tooltip-error-border-color: var(--red-base-62);
87 --tooltip-error-color: var(--red-base-62);
706 .djs-tooltip-error {
710 background: var(--tooltip-error-background-color);
711 border: solid 1px var(--tooltip-error-border-color);
713 color: var(--tooltip-error-color);
720 .djs-tooltip-error:hover {
/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js46235 if (!tooltip.html) {
46241 tooltip = assign({}, this._tooltipDefaults, tooltip, {
46260 if (!tooltip) {
46293 tooltip = this.get(tooltip);
46295 if (!tooltip) {
46309 tooltip = this.get(tooltip);
46311 if (!tooltip) {
46321 }, tooltip.timeout);
46333 if (tooltip) {
46367 var id = tooltip.id,
[all …]
H A Ddiagram-js.css80 --tooltip-error-background-color: var(--red-base-62-lighten-90);
81 --tooltip-error-border-color: var(--red-base-62);
82 --tooltip-error-color: var(--red-base-62);
701 .djs-tooltip-error {
705 background: var(--tooltip-error-background-color);
706 border: solid 1px var(--tooltip-error-border-color);
708 color: var(--tooltip-error-color);
715 .djs-tooltip-error:hover {
/plugin/c3chart/assets/
H A Dc3.css140 .c3-tooltip-container {
144 .c3-tooltip {
155 .c3-tooltip tr {
159 .c3-tooltip th {
167 .c3-tooltip td {
174 .c3-tooltip td > span {
181 .c3-tooltip .value {
H A Dc3.min.js2tooltip:"c3-tooltip",tooltipName:"c3-tooltip-name",shape:"c3-shape",shapes:"c3-shapes",line:"c3-li… property in AnonymousFunctionca6b16e90100.Y
/plugin/callflow/
H A Dscript.js29 tooltip: class in style
43 Raphael.el.tooltip = function (paper,x,y,text) { class in Raphael.el
47 …xt(x,(y+style.txtsize/2)+10,text).attr({"font-size":style.tooltip.txtsize,"fill":style.tooltip.txt…
53 …t(BB.x-4,BB.y-2,BB.width+8,BB.height+4).attr({"fill":style.tooltip.bgr,"stroke":style.tooltip.bord…
350 ).tooltip( //show text tooltip on hover
/plugin/ckgdoku/ckeditor/
H A DCHANGES.md605 …cket/12601): Fixed: [Strikethrough](http://ckeditor.com/addon/basicstyles) button tooltip spelling.
951 * [#10886](http://dev.ckeditor.com/ticket/10886): Widgets: Added tooltip to the drag handle.
/plugin/ckgdoku/ckeditor/plugins/fontAssist/
H A Dplugin.js.unc33 // Toolbar button tooltip.
/plugin/ckgdoku/ckeditor/plugins/footnote/
H A Dplugin.js.unc36 // Toolbar button tooltip.
/plugin/ckgdoku/ckeditor/plugins/geshi/dialogs/
H A Dgeshi.js1 …){}},{type:"text",id:"language",label:"<html><span title='"+k.lang.geshi.tooltip+"' style = 'color…
H A Dgeshi.js.unc112 …label: "<html><span title='"+editor.lang.geshi.tooltip+"' style = 'color:blue;text-decoration:un…
/plugin/ckgdoku/ckeditor/plugins/geshi/lang/
H A Den.js12 tooltip: 'Enter full or partial name, click to search language menu',
/plugin/ckgdoku/ckeditor/plugins/signature/
H A Dplugin.js.unc49 // Toolbar button tooltip.
/plugin/ckgedit/ckeditor/
H A DCHANGES.md1025 …2601): Fixed: [Strikethrough](https://ckeditor.com/cke4/addon/basicstyles) button tooltip spelling.
1371 * [#10886](https://dev.ckeditor.com/ticket/10886): Widgets: Added tooltip to the drag handle.
/plugin/ckgedit/ckeditor/plugins/fontAssist/
H A Dplugin.js.unc33 // Toolbar button tooltip.
/plugin/ckgedit/ckeditor/plugins/footnote/
H A Dplugin.js.unc36 // Toolbar button tooltip.
/plugin/ckgedit/ckeditor/plugins/geshi/dialogs/
H A Dgeshi.js1 …){}},{type:"text",id:"language",label:"<html><span title='"+k.lang.geshi.tooltip+"' style = 'color…
H A Dgeshi.js.unc112 …label: "<html><span title='"+editor.lang.geshi.tooltip+"' style = 'color:blue;text-decoration:un…
/plugin/ckgedit/ckeditor/plugins/geshi/lang/
H A Dde.js12 tooltip: 'Enter full or partial name, click to search language menu',
H A Den.js15 tooltip: 'Enter full or partial name, click to search language menu',
/plugin/ckgedit/ckeditor/plugins/signature/
H A Dplugin.js.unc49 // Toolbar button tooltip.
/plugin/codebuttonmod2/
H A Dall.css25 * A minimal CSS-only tooltip copied from:
30 * <p class="o-tooltip--left" data-tooltip="Hey">Short</p>
33 .o-tooltip--left {
37 .o-tooltip--left:after {
41 content: attr(data-tooltip);
55 .o-tooltip--left:hover:after {
/plugin/combo/ComboStrap/
H A DIconTag.php131 $tooltip = $tagAttributes->getValueAndRemoveIfPresent(Tooltip::TOOLTIP_ATTRIBUTE);
133 if ($tooltip !== null) {
135 * If there is a tooltip, we need
140 $tooltipTag = TagAttributes::createFromCallStackArray([Tooltip::TOOLTIP_ATTRIBUTE => $tooltip])
149 * Close the span if we are in a tooltip context
151 if ($tooltip !== null) {
H A DPluginUtility.php523 static function getDocumentationHyperLink($canonical, $label, bool $withIcon = true, $tooltip = ""): string argument
552 if (empty($tooltip)) {
555 $title = $tooltip;
558 if (!empty($tooltip)) {
560 $htmlToolTip = "data{$dataAttributeNamespace}-toggle=\"tooltip\"";
H A DTooltip.php15 public const TOOLTIP_ATTRIBUTE = "tooltip";
22 $tooltip = $tagAttributes->getValueAndRemove(self::TOOLTIP_ATTRIBUTE);
23 if ($tooltip === null) {
27 if (!is_array($tooltip)) {
28 LogUtility::msg("The tooltip value ($tooltip) is not an array.");
39 * Old tooltip syntax
41 $title = $tooltip[syntax_plugin_combo_tooltip::TEXT_ATTRIBUTE] ?? null;
44 $callStack = $tooltip[Tooltip::CALLSTACK] ?? null;
49 $title = LogUtility::wrapInRedForHtml("Error while rendering the tooltip
[all...]

12345678910>>...14