diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..539c2bd
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,13 @@
+# patch
+*.rej
+*.orig
+
+# vim
+*~
+
+# emacs
+\#*\#
+\.\#*
+
+# MacOS directory store
+.DS_Store
diff --git a/css/overlay-minimal.css b/css/overlay-minimal.css
new file mode 100644
index 0000000..63fc9db
--- /dev/null
+++ b/css/overlay-minimal.css
@@ -0,0 +1,32 @@
+
+/* the overlayed element */
+.overlay {
+
+ /* must be initially hidden */
+ display:none;
+
+ /* place overlay on top of other elements */
+ z-index:10000;
+
+ /* styling */
+ background-color:#333;
+
+ width:675px;
+ min-height:200px;
+ border:1px solid #666;
+
+ /* CSS3 styling for latest browsers */
+ -moz-box-shadow:0 0 90px 5px #000;
+ -webkit-box-shadow: 0 0 90px #000;
+}
+
+/* close button positioned on upper right corner */
+.overlay .close {
+ background-image:url(../img/overlay/close.png);
+ position:absolute;
+ right:-15px;
+ top:-15px;
+ cursor:pointer;
+ height:35px;
+ width:35px;
+}
diff --git a/css/tabs-accordion-horizontal.css b/css/tabs-accordion-horizontal.css
index 87cd227..ae1c616 100644
--- a/css/tabs-accordion-horizontal.css
+++ b/css/tabs-accordion-horizontal.css
@@ -33,6 +33,7 @@
float:left;
display:none;
margin-right:10px;
+ overflow:hidden;
}
/* content inside a pane should have fixed width */
diff --git a/css/tabs.css b/css/tabs.css
index a1e584e..d30b694 100644
--- a/css/tabs.css
+++ b/css/tabs.css
@@ -51,7 +51,7 @@ ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
color:#000 !important;
}
-/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */
+/* Different widths for tabs: use a class name: s, l, xl */
/* width 1 */
@@ -60,9 +60,9 @@ ul.tabs a.s:hover { background-position: -553px -31px; }
ul.tabs a.s.current { background-position: -553px -62px; }
/* width 2 */
-ul.tabs a.l { background-position: -248px -0px; width:174px; }
-ul.tabs a.l:hover { background-position: -248px -31px; }
-ul.tabs a.l.current { background-position: -248px -62px; }
+ul.tabs a.l { background-position: -247px -0px; width:174px; }
+ul.tabs a.l:hover { background-position: -247px -31px; }
+ul.tabs a.l.current { background-position: -247px -62px; }
/* width 3 */
diff --git a/demos/combine/scrollable-gallery-with-tooltips.html b/demos/combine/scrollable-gallery-with-tooltips.html
index a9128c5..f4f114c 100644
--- a/demos/combine/scrollable-gallery-with-tooltips.html
+++ b/demos/combine/scrollable-gallery-with-tooltips.html
@@ -61,7 +61,7 @@
CSS coding
Overlayed Gallery
- Our gallery follows exactly the same principles as in the Using the gallery plugin demo. Our scrollable items are properly setup for the gallery plugin and we have included the following overlay on the page:
+ Our gallery follows exactly the same principles as in the Using the gallery plugin demo. Our scrollable items are properly setup for the gallery plugin and we have included the following overlay on the page:
- The HTML setup is similar to the normal tab setup except that we have the "next" and "prev" action buttons available and the tabs are placed below the panes.
+ The HTML setup is similar to the normal tab setup except that we have the "forward" and "back" action buttons available and the tabs are placed below the panes.
diff --git a/demos/toolbox/expose/form.htm b/demos/toolbox/expose/form.htm
index 724d54c..355eb52 100644
--- a/demos/toolbox/expose/form.htm
+++ b/demos/toolbox/expose/form.htm
@@ -77,7 +77,7 @@
// when "unexposed", return to original background color
onClose: function() {
- form.css({backgroundColor: null});
+ form.css({backgroundColor: ''});
}
});
diff --git a/demos/toolbox/expose/video.html b/demos/toolbox/expose/video.html
index 0d6f685..873ec92 100644
--- a/demos/toolbox/expose/video.html
+++ b/demos/toolbox/expose/video.html
@@ -11,7 +11,7 @@
CSS code
- By default, the Expose tool uses the id "mask" for the mask. You can customize it by simply adjusting its CSS properties. Here are our customizations for this demo:
+ By default, the Expose tool uses the id "exposeMask" for the mask. You can customize it by simply adjusting its CSS properties. Here are our customizations for this demo:
- Specifies how far from the top edge of the screen the overlay should be placed. Acceptable values are an integer number specifying a distance in pixels, a string (such as '15%') specifying a percentage value or "center" in which case the overlay is vertically centered. Percentage values work consistently at different screen resolutions.
+ Specifies how far from the top edge of the screen the overlay should be placed. Acceptable values are an integer number specifying a distance in pixels (such as 100), a string (such as '15%') specifying a percentage value or "center" in which case the overlay is vertically centered. Percentage values work consistently at different screen resolutions.
- Two GitHub repositories have been created: jQuery Tools and the Website. Now it's easier to contribute.
+ Two GitHub repositories have been created: jQuery Tools and the Website. Now it's easier to contribute.