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

Commit

Permalink
Modal overlay opacity removed from CSS styles. Use a custom effect fu…
Browse files Browse the repository at this point in the history
…nction for this instead.
  • Loading branch information
Craga89 committed Aug 28, 2010
1 parent 248fc15 commit 6bbda4e
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 24 deletions.
6 changes: 1 addition & 5 deletions dist/jquery.qtip.css
Expand Up @@ -9,7 +9,7 @@
* http://en.wikipedia.org/wiki/MIT_License
* http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Sat Aug 28 22:50:29 2010 +0100
* Date: Sat Aug 28 22:54:05 2010 +0100
*/

.ui-tooltip-accessible{
Expand Down Expand Up @@ -250,10 +250,6 @@ div.ui-tooltip-tip{
background-color: black;
cursor: pointer;

opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);

/* Set this to any below 15000 (default starting z-index for qTips) */
z-index: 14999;
}
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.qtip.js
Expand Up @@ -9,7 +9,7 @@
* http://en.wikipedia.org/wiki/MIT_License
* http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Sat Aug 28 22:50:29 2010 +0100
* Date: Sat Aug 28 22:54:05 2010 +0100
*/

"use strict"; // Enable ECMAScript "strict" operation for this function. See more: http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/
Expand Down Expand Up @@ -782,7 +782,7 @@ function QTip(target, options, id)

// Use basic fade function
else {
tooltip.fadeTo(90, state ? 100 : 0, after);
tooltip.fadeTo(90, state ? 1 : 0, after);
}

// If inactive hide method is set, active it
Expand Down
20 changes: 10 additions & 10 deletions dist/jquery.qtip.min.js

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.pack.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/core.js
Expand Up @@ -757,7 +757,7 @@ function QTip(target, options, id)

// Use basic fade function
else {
tooltip.fadeTo(90, state ? 100 : 0, after);
tooltip.fadeTo(90, state ? 1 : 0, after);
}

// If inactive hide method is set, active it
Expand Down
4 changes: 0 additions & 4 deletions src/modal.css
Expand Up @@ -6,10 +6,6 @@
background-color: black;
cursor: pointer;

opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);

/* Set this to any below 15000 (default starting z-index for qTips) */
z-index: 14999;
}
Expand Down

0 comments on commit 6bbda4e

Please sign in to comment.