summaryrefslogtreecommitdiff
path: root/resources/jquery.tipsy/jquery.tipsy.css
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2011-06-22 11:28:20 +0200
committerPierre Schmitz <pierre@archlinux.de>2011-06-22 11:28:20 +0200
commit9db190c7e736ec8d063187d4241b59feaf7dc2d1 (patch)
tree46d1a0dee7febef5c2d57a9f7b972be16a163b3d /resources/jquery.tipsy/jquery.tipsy.css
parent78677c7bbdcc9739f6c10c75935898a20e1acd9e (diff)
update to MediaWiki 1.17.0
Diffstat (limited to 'resources/jquery.tipsy/jquery.tipsy.css')
-rw-r--r--resources/jquery.tipsy/jquery.tipsy.css75
1 files changed, 75 insertions, 0 deletions
diff --git a/resources/jquery.tipsy/jquery.tipsy.css b/resources/jquery.tipsy/jquery.tipsy.css
new file mode 100644
index 00000000..d79554d2
--- /dev/null
+++ b/resources/jquery.tipsy/jquery.tipsy.css
@@ -0,0 +1,75 @@
+.tipsy {
+ padding: 5px;
+ position: absolute;
+ z-index: 100000;
+}
+.tipsy-inner {
+ padding: 5px 8px 4px 8px;
+ /*background-color: #e8f2f8;*/
+ background-color: #ffffff;
+ border: solid 1px #a7d7f9;
+ color: black;
+ max-width: 15em;
+ text-align: left;
+ border-radius: 4px;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ /*
+ -moz-box-shadow: 0px 2px 8px #cccccc;
+ -webkit-box-shadow: 0px 2px 8px #cccccc;
+ box-shadow: 0px 2px 8px #cccccc;
+ -ms-filter: "progid:DXImageTransform.Microsoft.DropShadow(OffX=0, OffY=2, Strength=6, Direction=90, Color='#cccccc')";
+ filter: progid:DXImageTransform.Microsoft.DropShadow(OffX=0, OffY=2, Strength=6, Direction=90, Color='#cccccc');
+ */
+}
+.tipsy-arrow {
+ position: absolute;
+ /* @embed */
+ background: url('images/tipsy.png') no-repeat top left;
+ width: 11px;
+ height: 6px;
+}
+.tipsy-n .tipsy-arrow {
+ top: 0px;
+ left: 50%;
+ margin-left: -5px;
+}
+.tipsy-nw .tipsy-arrow {
+ top: 1px;
+ left: 10px;
+}
+.tipsy-ne .tipsy-arrow {
+ top: 1px;
+ right: 10px;
+}
+.tipsy-s .tipsy-arrow {
+ bottom: 0px;
+ left: 50%;
+ margin-left: -5px;
+ background-position: bottom left;
+}
+.tipsy-sw .tipsy-arrow {
+ bottom: 0px;
+ left: 10px;
+ background-position: bottom left;
+}
+.tipsy-se .tipsy-arrow {
+ bottom: 0px;
+ right: 10px;
+ background-position: bottom left;
+}
+.tipsy-e .tipsy-arrow {
+ top: 50%;
+ margin-top: -5px;
+ right: 1px;
+ width: 5px;
+ height: 11px;
+ background-position: top right;
+}
+.tipsy-w .tipsy-arrow {
+ top: 50%;
+ margin-top: -5px;
+ left: 0px;
+ width: 6px;
+ height: 11px;
+} \ No newline at end of file