Home
last modified time | relevance | path

Searched refs:tooltip (Results 1 – 25 of 383) sorted by relevance

12345678910>>...16

/plugin/combo/resources/theme/default/components/css/
H A Dtooltip.css1 .tooltip-inner {
4 .tooltip-inner>p:last-child {
7 .tooltip-inner>h1,.tooltip-inner>h2,.tooltip-inner>h3,.tooltip-inner>h4,.tooltip-inner>h5,.tooltip-…
11 span[data-bs-toggle="tooltip"] { text-decoration: underline dotted; }
12 span[data-toggle="tooltip"] { text-decoration: underline dotted; }
/plugin/achart/assets/
Dapexcharts.css39 .apexcharts-tooltip {
57 .apexcharts-tooltip.apexcharts-active {
62 .apexcharts-tooltip.apexcharts-theme-light {
67 .apexcharts-tooltip.apexcharts-theme-dark {
72 .apexcharts-tooltip * {
77 .apexcharts-tooltip-title {
83 .apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
88 .apexcharts-tooltip.apexcharts-theme-dark .apexcharts-tooltip-title {
93 .apexcharts-tooltip-text-y-value,
94 .apexcharts-tooltip-text-goals-value,
[all …]
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/
Ddhtmlxgantt_tooltip.js234 var tooltip = { variable
248 tooltip.top = mouse.y;
249 tooltip.left = mouse.x;
250 tooltip.top += offsetY;
251 tooltip.left += offsetX;
252 tooltip.bottom = tooltip.top + tooltip.height;
253 tooltip.right = tooltip.left + tooltip.width;
256 if (tooltip.top < viewport.top - scrollTop) {
257 tooltip.top = viewport.top;
258 tooltip.bottom = tooltip.top + tooltip.height;
[all …]
/plugin/combo/ComboStrap/
H A DTooltip.php22 $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.");
41 $title = $tooltip[syntax_plugin_combo_tooltip::TEXT_ATTRIBUTE] ?? null;
44 $callStack = $tooltip[Tooltip::CALLSTACK] ?? null;
76 $position = $tooltip[Tooltip::POSITION_ATTRIBUTE] ?? null;
/plugin/bootswrapper/exe/help/
Dtooltip.txt3 <code html><tooltip title="Sample Text" location="bottom">Lorem ipsum</tooltip> dolor sit amet...</…
5 <tooltip title="Sample Text" location="bottom">Lorem ipsum</tooltip> dolor sit amet...
10 | ''title'' | required | | Title of tooltip |
11 | ''location'' | ''top'' | ''top'', ''bottom'', ''left'', ''right'', ''auto'' | Location of tooltip
/plugin/advrack/
Djquery.qtip.js102 this.tooltip = NULL;
144 tooltip;
150 this.tooltip = elements.tooltip = tooltip = $('<div/>', {
250 this.tooltip.stop(1,0).find('*').remove().end().remove();
288 this.tooltip.one('tooltiphidden', $.proxy(process, this));
402 this.tooltip[0].id = this._id;
442 this.rendered && this.tooltip.appendTo(v);
452 this.rendered && this.tooltip.removeClass(p).addClass(v);
455 this.rendered && this.tooltip.css(o, v);
461 this.rendered && this.tooltip.toggleClass(CLASS_DEFAULT, !!v);
[all …]
/plugin/patchpanel/
Dscript.js2 var tooltip = document.getElementById("patchpanel_tooltip");
3 if (!tooltip) {
4 tooltip = document.createElement('div');
5 tooltip.setAttribute("id", "patchpanel_tooltip");
6 document.body.appendChild(tooltip);
/plugin/codebuttonmod2/
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/refnotes/
Dscript.js73 plugin_refnotes.tooltip.hide(event);
81 tooltip : { property
83 plugin_refnotes.tooltip.hide(event);
110 .mouseenter(plugin_refnotes.tooltip.show)
111 .mouseleave(plugin_refnotes.tooltip.hide);
112 jQuery(document).mousemove(plugin_refnotes.tooltip.track);
113 jQuery(window).scroll(plugin_refnotes.tooltip.hide);
/plugin/number/
Dstyle.css6 .plugin-number-tooltip {
12 .plugin-number-tooltip, .plugin-number-tooltip:before {
24 .plugin-number:hover .plugin-number-tooltip,
25 .plugin-number:hover .plugin-number-tooltip:before {
29 .plugin-number-tooltip:before {
Dsyntax.php108 $tooltip = '<strong>Decimal number</strong> (base 10)<br>= '
111 $tooltip .= '<br>= ' . self::renderDec($value) . ' (decimal)';
113 $tooltip .= '<br>= ' . self::renderHex($value) . ' (hexadecimal)';
116 $tooltip = '<strong>Binary number</strong> (base 2)<br>= '
121 $tooltip = '<strong>Hexadecimal number</strong> (base 16)<br>= '
129 $tooltip = '<strong>'
137 …$renderer->doc .= "<span class='plugin-number'><span class='plugin-number-tooltip'>$tooltip</span>…
/plugin/character/
Dstyle.css8 .plugin-character-tooltip {
14 .plugin-character-tooltip, .plugin-character-tooltip:before {
25 .plugin-character:hover .plugin-character-tooltip,
26 .plugin-character:hover .plugin-character-tooltip:before {
30 .plugin-character-tooltip:before {
/plugin/tooltip/
DREADME3 * Introduces syntax for tooltip text
4 …https://informatica.temuco.udelmar.cl/~lmachuca/dokuwiki-lucho/desarrollo/dokuwiki/plugin-tooltip]]
9 http://dokuwiki.org/plugin:tooltip
13 - <ttip:text>tooltip content<ttip> for long tooltips
14 - {!word:tooltip content}} for one-word tooltips, definitions and the like.
DChangeLog12 * syntax/tooltip.php, syntax/short.php: Updated getInfo()
14 * syntax/tooltip.php, syntax/short.php: changed XHTML container to
16 * syntax/tooltip.php, syntax/short.php: added text ('text') renderer
31 http://www.dokuwiki.org/plugin:tooltip
37 * style.css: modified default styles to use Opera-like tooltip outlines.
/plugin/autotooltip/
H A Dhelper.php60 * @param string $tooltip - The tooltip content. Newlines will be rendered as line breaks.
67 …public function forText($content, $tooltip, $title='', $preTitle = '', $classes = '', $textClasses… argument
81 $partCount = (empty($title) ? 0 : 1) + (empty($preTitle) ? 0 : 1) + (empty($tooltip) ? 0 : 1);
82 if ($partCount > 1 || strchr($tooltip, "\n") !== FALSE || strlen($tooltip) > 40) {
100 if (!empty($tooltip)) {
101 $contentParts[] = $this->_formatTT($tooltip);
/plugin/bez/scripts/
H A Dtask.js51 var tooltips = jQuery('.bez_metaform').find("input, select").tooltip({
61 if ($input.tooltip("instance") === undefined) {
68 $input.tooltip("open");
71 $input.tooltip("disable");
94 jQuery(document).tooltip({
161 .tooltip({
186 .tooltip()
254 .tooltip( "open" );
257 this.input.tooltip( "close" ).attr( "title", "" );
/plugin/autolink4/syntax/
Dallwords.php18 private $tooltip; variable in syntax_plugin_autolink4_allwords
24 $this->tooltip = plugin_load('helper', 'autotooltip');
148 if ($this->tooltip && $data[self::$TOOLTIP]) {
149 $renderer->doc .= $this->tooltip->forWikilink($data[self::$TO], $data[self::$TEXT]);
Dregex.php23 private $tooltip; variable in syntax_plugin_autolink4_regex
29 $this->tooltip = plugin_load('helper', 'autotooltip');
105 else if ($this->tooltip && $data[self::$TOOLTIP]) {
106 $renderer->doc .= $this->tooltip->forWikilink($data[self::$TO], $data[self::$TEXT]);
/plugin/combo/resources/snippet/js/
H A Dtooltip.js4 …if (typeof jQuery != 'undefined' && typeof jQuery.fn.tooltip.constructor.VERSION !== 'undefined') {
5 version = parseInt(jQuery.fn.tooltip.Constructor.VERSION.substr(0, 1), 10);
9 jQuery(`[data${namespace}-toggle="tooltip"]`).tooltip();
H A Dpage-protection.js46 let tooltip = bootstrap.Tooltip.getInstance(element);
47 if (tooltip != null) {
48 tooltip.dispose();
/plugin/grensladawritezor/fckeditor/editor/_source/classes/
Dfcktoolbarfontscombo.js24 var FCKToolbarFontsCombo = function( tooltip, style ) argument
28 this.Tooltip = tooltip ? tooltip : this.Label ;
Dfcktoolbarfontsizecombo.js24 var FCKToolbarFontSizeCombo = function( tooltip, style ) argument
28 this.Tooltip = tooltip ? tooltip : this.Label ;
/plugin/diagramsnet/lib/plugins/
Dtooltips.js10 var tooltip = cell.getAttribute('tooltip');
12 if (tooltip != null && tooltip.length > 0)
/plugin/wysiwyg/fckeditor/editor/_source/classes/
Dfcktoolbarfontformatcombo.js24 var FCKToolbarFontFormatCombo = function( tooltip, style ) argument
26 if ( tooltip === false )
31 this.Tooltip = tooltip ? tooltip : this.Label ;
/plugin/c3chart/assets/
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 {

12345678910>>...16