Skip to content
This repository has been archived by the owner on Jun 14, 2020. It is now read-only.

Commit

Permalink
Fix tip border issue due to missing canvas styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Feb 11, 2013
1 parent fa2edeb commit 60a993a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
7 changes: 4 additions & 3 deletions dist/jquery.qtip.css
@@ -1,12 +1,12 @@
/*!
* qTip2 - Pretty powerful tooltips - v2.0.1-18-
* qTip2 - Pretty powerful tooltips - v2.0.1-19-
* http://qtip2.com
*
* Copyright (c) 2013 Craig Michael Thompson
* Released under the MIT, GPL licenses
* http://jquery.org/license
*
* Date: Mon Feb 11 2013 12:40 GMT+0000
* Date: Mon Feb 11 2013 12:48 GMT+0000
* Plugins: svg ajax tips modal viewport imagemap ie6
* Styles: basic css3
*/
Expand Down Expand Up @@ -569,7 +569,8 @@
}

.qtip .qtip-tip,
.qtip .qtip-tip .qtip-vml{
.qtip .qtip-tip .qtip-vml,
.qtip .qtip-tip canvas{
position: absolute;

color: #123456;
Expand Down
6 changes: 3 additions & 3 deletions dist/jquery.qtip.js
@@ -1,12 +1,12 @@
/*!
* qTip2 - Pretty powerful tooltips - v2.0.1-18-
* qTip2 - Pretty powerful tooltips - v2.0.1-19-
* http://qtip2.com
*
* Copyright (c) 2013 Craig Michael Thompson
* Released under the MIT, GPL licenses
* http://jquery.org/license
*
* Date: Mon Feb 11 2013 12:40 GMT+0000
* Date: Mon Feb 11 2013 12:48 GMT+0000
* Plugins: svg ajax tips modal viewport imagemap ie6
* Styles: basic css3
*/
Expand Down Expand Up @@ -1770,7 +1770,7 @@ if(!$.ui) {
}

// Set global qTip properties
QTIP.version = '2.0.1-18-';
QTIP.version = '2.0.1-19-';
QTIP.nextid = 0;
QTIP.inactiveEvents = 'click dblclick mousedown mouseup mousemove mouseleave mouseenter'.split(' ');
QTIP.zindex = 15000;
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.qtip.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/jquery.qtip.min.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/tips/tips.css
Expand Up @@ -6,7 +6,8 @@
}

.qtip .qtip-tip,
.qtip .qtip-tip .qtip-vml{
.qtip .qtip-tip .qtip-vml,
.qtip .qtip-tip canvas{
position: absolute;

color: #123456;
Expand Down

0 comments on commit 60a993a

Please sign in to comment.