Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.

Commit 7aa1aa8

Browse files
committed
version 2.5.3 release
1 parent fb0c6da commit 7aa1aa8

File tree

9 files changed

+1404
-1393
lines changed

9 files changed

+1404
-1393
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
---
44

5+
### Version 2.5.3
6+
7+
+ **toolbars** now get the same font-family as the title
8+
+ css/styling for **hints** changed
9+
+ **option.load:** inside the complete callback **this** refers to the content property of the panel
10+
+ **option.ajax:** inside the callback functions **this** refers to the content property of the panel
11+
+ **option.ajax:** new parameter **autoload** (if set to *false* returned data is NOT appended to content section by default)
12+
+ **option.callback:** inside the callback functions **this** refers to the jsPanel
13+
+ **tooltips** don't have a drag cursor anymore
14+
+ various internal changes/improvements
15+
16+
---
17+
518
### Version 2.5.2
619

720
+ **fix** of positioning issue with IE

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## [jsPanel 2.5.2 released 2015-05-13](#)
1+
## [jsPanel 2.5.3 released 2015-07-21](#)
22

33
**A jQuery plugin to create multifunctional floating panels.**
44

bower.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jspanel",
3-
"version": "v2.5.2",
3+
"version": "v2.5.3",
44
"description": "A jQuery Plugin to create highly configurable multifunctional floating panels for use in backend solutions and other web applications. Also usable as modal panel, tooltip or hint. With built in support for bootstrap, right-to-left text direction and more ...",
55
"keywords": [
66
"jQuery",
@@ -15,7 +15,8 @@
1515
"floating panel",
1616
"modal",
1717
"tooltip",
18-
"bootstrap"
18+
"bootstrap",
19+
"panel"
1920
],
2021
"main": [
2122
"source/jquery.jspanel.js",

jsPanel.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"hint",
1616
"bootstrap"
1717
],
18-
"version": "2.5.2",
18+
"version": "2.5.3",
1919
"author": {
2020
"name": "Stefan Straesser",
2121
"url": "http://jspanel.de/",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jspanel",
3-
"version": "2.5.2",
3+
"version": "2.5.3",
44
"description": "A jQuery Plugin to create highly configurable floating panels for use in a backend solution and other web applications",
55
"main": [
66
"source/jquery.jspanel.js",

source/jquery.jspanel.css

Lines changed: 33 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* jquery.jspanel.css version 2.5.1 - 2015-05-12 08:13 */
1+
/* jquery.jspanel.css version 2.5.3 - 2015-05-16 22:21 */
22
@font-face {
33
font-family: 'jsglyphregular';
44
src: url('fonts/jsglyph.eot');
@@ -103,13 +103,15 @@
103103
margin: 0; padding: 0; border: 0; font-size: 100%; line-height: 1.5em; vertical-align: baseline;
104104
}
105105
.jsPanel{
106-
display: none;
106+
box-sizing: border-box;
107+
/*display: none; // check bolg entry for jQuery 3.0.0 !! */
107108
overflow: hidden;
108109
position: absolute;
109110
border-radius: 3px;
110111
z-index: 100;
111112
}
112113
.jsPanel-hdr{
114+
box-sizing: border-box;
113115
min-height: 26px;
114116
padding: 2px 0 4px 2px;
115117
}
@@ -155,6 +157,7 @@ h3.jsPanel-title{
155157

156158

157159
.jsPanel-hdr-toolbar {
160+
box-sizing: border-box;
158161
clear: both;
159162
font-size: 16px;
160163
margin-top: 23px;
@@ -175,6 +178,7 @@ h3.jsPanel-title{
175178
box-sizing: border-box;
176179
}
177180
.jsPanel-ftr{
181+
box-sizing: border-box;
178182
cursor: move;
179183
display: none;
180184
font-size: 12px;
@@ -440,22 +444,17 @@ h3.jsPanel-title{
440444
.jsPanel-hint{
441445
margin-bottom: 4px;
442446
}
443-
.jsPanel-hint-close-dark, .jsPanel-hint-close-white{
444-
float:right;
445-
margin:5px;
447+
.jsPanel-hint-close{
448+
float: right;
449+
font-size: 1.5em;
450+
margin: 4px 5px 0 0;
446451
cursor: pointer;
447-
width: 20px;
448-
height: 20px;
449-
}
450-
.jsPanel-hint-close-dark{
451-
background: url('images/close-20-333.png');
452-
}
453-
.jsPanel-hint-close-white{
454-
background: url('images/close-20.png');
455452
}
456453
.jsPanel-hint-content.jsPanel-hint-default{
457-
background: none repeat scroll 0 0 #fff;
458-
color: #000;
454+
background: #fff none repeat scroll 0 0;
455+
border: 2px solid #222;
456+
color: #222;
457+
text-shadow: 1px 1px 1px #789;
459458
}
460459
.jsPanel-hint-content.jsPanel-hint-light{
461460
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(250,250,250,0.65) 100%); background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(250,250,250,0.65) 100%);
@@ -482,31 +481,42 @@ h3.jsPanel-title{
482481
color: #fff;
483482
}
484483
.jsPanel-hint-content.jsPanel-hint-primary{
485-
background: none repeat scroll 0 0 #2FA4E7;
486-
color: #fff;
484+
background: #82C8F1 none repeat scroll 0 0;
485+
border: 5px solid #02436A;
486+
color: #02436A;
487+
text-shadow: 2px 2px 2px #fff;
487488
}
488489
.jsPanel-hint-content.jsPanel-hint-info{
489-
background: none repeat scroll 0 0 #033C73;
490+
background: #4594c3 none repeat scroll 0 0;
491+
border: 5px solid #033c73;
490492
color: #fff;
493+
text-shadow: 2px 2px 2px #033c73;
491494
}
492495
.jsPanel-hint-content.jsPanel-hint-success{
493-
background: none repeat scroll 0 0 #73A839;
494-
color: #fff;
496+
background: #C3EA99 none repeat scroll 0 0;
497+
border: 5px solid #034E26;
498+
color: #356304;
499+
text-shadow: 2px 2px 2px #aaa;
495500
}
496501
.jsPanel-hint-content.jsPanel-hint-warning{
497-
background: none repeat scroll 0 0 #DD5600;
498-
color: #fff;
502+
background: #FFC7A3 none repeat scroll 0 0;
503+
border: 5px solid #DD5600;
504+
color: #AD6537;
505+
text-shadow: 2px 2px 2px #fff;
499506
}
500507
.jsPanel-hint-content.jsPanel-hint-danger{
501-
background: none repeat scroll 0 0 #C71C22;
508+
background: #fc7073 none repeat scroll 0 0;
509+
border: 5px solid #c71c22;
502510
color: #fff;
511+
text-shadow: 2px 2px 2px #c71c22;
503512
}
504513

505514
/**
506515
* CSS3 Tips v1.0.1
507516
* A stylesheet for creating tooltips without using anything other than CSS3.
508517
* created by c.bavota released under GPL v2 March 21st, 2014
509518
* HTML example code for the tooltip
519+
* http://cbavota.bitbucket.org/css3-tips/
510520
* <a href="http://bavotasan.com" class="top-tip" data-tips="Go to bavotasan.com">bavotasan.com</a>
511521
*/
512522
[data-tips] {

0 commit comments

Comments
 (0)