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

Commit

Permalink
Added new 'tipsy' style to the extra.css stylesheet
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Nov 29, 2010
1 parent db76465 commit 35d451f
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@
*.diff
*.patch
.DS_Store
dist/images
23 changes: 22 additions & 1 deletion 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: Fri Nov 26 13:15:03 2010 +0000
* Date: Sun Nov 28 23:14:08 2010 +0000
*/

.ui-tooltip-accessible{
Expand Down Expand Up @@ -351,3 +351,24 @@ div.ui-tooltip-cluetip .ui-tooltip-wrapper{
color: #111;
}


/* Tipsy style */
.ui-tooltip-tipsy .ui-tooltip-wrapper{
border: 0px solid black;
border: 0px solid rgba(0,0,0, .8);

background: black;
background: rgba(0,0,0, .8);
filter: alpha(opacity=80);

color: white;
font-size: 11px;
font-family: 'Lucida Grande', sans-serif;
font-weight: bold;
line-height: 16px;

-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
2 changes: 1 addition & 1 deletion 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: Fri Nov 26 13:15:03 2010 +0000
* Date: Sun Nov 28 23:14:08 2010 +0000
*/

"use strict"; // Enable ECMAScript "strict" operation for this function. See more: http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.qtip.min.js

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

2 changes: 1 addition & 1 deletion dist/jquery.qtip.pack.js

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

21 changes: 21 additions & 0 deletions src/extra.css
Expand Up @@ -82,3 +82,24 @@ div.ui-tooltip-cluetip .ui-tooltip-wrapper{
color: #111;
}


/* Tipsy style */
.ui-tooltip-tipsy .ui-tooltip-wrapper{
border: 0px solid black;
border: 0px solid rgba(0,0,0, .8);

background: black;
background: rgba(0,0,0, .8);
filter: alpha(opacity=80);

color: white;
font-size: 11px;
font-family: 'Lucida Grande', sans-serif;
font-weight: bold;
line-height: 16px;

-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}

0 comments on commit 35d451f

Please sign in to comment.