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

Commit

Permalink
Added modifiction to fix border-bug in cSS
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Dec 30, 2010
1 parent 7281144 commit 96d1003
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 28 deletions.
28 changes: 15 additions & 13 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: Thu Dec 30 07:06:44 2010 +0000
* Date: Thu Dec 30 07:47:53 2010 +0000
*/

.ui-tooltip-accessible{
Expand Down Expand Up @@ -40,30 +40,32 @@
min-width: 50px;
}

.ui-tooltip-titlebar{
position: relative;
min-height: 19px;
padding: 6px 35px 6px 10px;
overflow: hidden;

border-width: 3px 3px 0;
border-style: solid;

font-weight: bold;
}

.ui-tooltip-content{
position: relative;
padding: 5px 9px;
overflow: hidden;

border-width: 0 3px 3px;
border-width: 3px;
border-style: solid;

text-align: left;
word-wrap: break-word;
overflow: hidden;
}

.ui-tooltip-titlebar{
position: relative;
min-height: 19px;
padding: 6px 35px 6px 10px;
overflow: hidden;

border-width: 3px 3px 0;
border-style: solid;

font-weight: bold;
}
.ui-tooltip-titlebar + .ui-tooltip-content{ border-top-width: 0px; }

/*! Default close button class */
.ui-tooltip-close{
Expand Down
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: Thu Dec 30 07:06:44 2010 +0000
* Date: Thu Dec 30 07:47:53 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.

26 changes: 14 additions & 12 deletions src/core.css
Expand Up @@ -26,30 +26,32 @@
min-width: 50px;
}

.ui-tooltip-titlebar{
position: relative;
min-height: 19px;
padding: 6px 35px 6px 10px;
overflow: hidden;

border-width: 3px 3px 0;
border-style: solid;

font-weight: bold;
}

.ui-tooltip-content{
position: relative;
padding: 5px 9px;
overflow: hidden;

border-width: 0 3px 3px;
border-width: 3px;
border-style: solid;

text-align: left;
word-wrap: break-word;
overflow: hidden;
}

.ui-tooltip-titlebar{
position: relative;
min-height: 19px;
padding: 6px 35px 6px 10px;
overflow: hidden;

border-width: 3px 3px 0;
border-style: solid;

font-weight: bold;
}
.ui-tooltip-titlebar + .ui-tooltip-content{ border-top-width: 0px; }

/*! Default close button class */
.ui-tooltip-close{
Expand Down

0 comments on commit 96d1003

Please sign in to comment.