qtip2-jquery-rails 2.1.108 → 2.2.100

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,14 +1,14 @@
1
1
  /*
2
- * qTip2 - Pretty powerful tooltips - v2.1.1
2
+ * qTip2 - Pretty powerful tooltips - v2.2.1
3
3
  * http://qtip2.com
4
4
  *
5
- * Copyright (c) 2013 Craig Michael Thompson
6
- * Released under the MIT, GPL licenses
5
+ * Copyright (c) 2014
6
+ * Released under the MIT licenses
7
7
  * http://jquery.org/license
8
8
  *
9
- * Date: Thu Jul 11 2013 02:03 GMT+0100+0100
10
- * Plugins: tips modal viewport svg imagemap ie6
11
- * Styles: basic css3
9
+ * Date: Sat Sep 6 2014 06:25 EDT-0400
10
+ * Plugins: tips viewport imagemap svg modal ie6
11
+ * Styles: core basic css3
12
12
  */
13
13
  .qtip{
14
14
  position: absolute;
@@ -18,7 +18,7 @@
18
18
 
19
19
  max-width: 280px;
20
20
  min-width: 50px;
21
-
21
+
22
22
  font-size: 10.5px;
23
23
  line-height: 12px;
24
24
 
@@ -52,20 +52,19 @@
52
52
  .qtip-close{
53
53
  position: absolute;
54
54
  right: -9px; top: -9px;
55
+ z-index: 11; /* Overlap .qtip-tip */
55
56
 
56
57
  cursor: pointer;
57
58
  outline: medium none;
58
59
 
59
- border-width: 1px;
60
- border-style: solid;
61
- border-color: transparent;
60
+ border: 1px solid transparent;
62
61
  }
63
62
 
64
63
  .qtip-titlebar .qtip-close{
65
64
  right: 4px; top: 50%;
66
65
  margin-top: -9px;
67
66
  }
68
-
67
+
69
68
  * html .qtip-titlebar .qtip-close{ top: 16px; } /* IE fix */
70
69
 
71
70
  .qtip-titlebar .ui-icon,
@@ -103,9 +102,7 @@
103
102
 
104
103
  /* Default tooltip style */
105
104
  .qtip-default{
106
- border-width: 1px;
107
- border-style: solid;
108
- border-color: #F1D031;
105
+ border: 1px solid #F1D031;
109
106
 
110
107
  background-color: #FFFFA3;
111
108
  color: #555;
@@ -120,14 +117,13 @@
120
117
  background: #F1F1F1;
121
118
  color: #777;
122
119
  }
123
-
120
+
124
121
  .qtip-default .qtip-titlebar .qtip-close{
125
122
  border-color: #AAA;
126
123
  color: #111;
127
124
  }
128
125
 
129
126
 
130
-
131
127
  /*! Light tooltip style */
132
128
  .qtip-light{
133
129
  background-color: white;
@@ -232,7 +228,6 @@
232
228
  }
233
229
 
234
230
 
235
-
236
231
  .qtip-shadow{
237
232
  -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
238
233
  -moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
@@ -259,13 +254,13 @@
259
254
  -moz-border-radius: 2px;
260
255
  -webkit-border-radius: 2px;
261
256
  border-radius: 2px;
262
-
257
+
263
258
  -webkit-box-shadow: 0 0 3px #333;
264
259
  -moz-box-shadow: 0 0 3px #333;
265
260
  box-shadow: 0 0 3px #333;
266
261
 
267
262
  color: white;
268
- border-width: 0;
263
+ border: 0 solid transparent;
269
264
 
270
265
  background: #4A4A4A;
271
266
  background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0,#4A4A4A),color-stop(100%,black));
@@ -279,11 +274,11 @@
279
274
  background-color: #4A4A4A;
280
275
  background-color: rgba(0,0,0,0);
281
276
  }
282
-
277
+
283
278
  .qtip-youtube .qtip-content{
284
279
  padding: .75em;
285
280
  font: 12px arial,sans-serif;
286
-
281
+
287
282
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);
288
283
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);";
289
284
  }
@@ -362,11 +357,11 @@
362
357
  color: white;
363
358
  border: 0 dashed transparent;
364
359
  }
365
-
360
+
366
361
  .qtip-cluetip .qtip-icon{
367
362
  border-color: #808064;
368
363
  }
369
-
364
+
370
365
  .qtip-cluetip .qtip-titlebar .ui-state-hover{
371
366
  border-color: #696952;
372
367
  color: #696952;
@@ -396,7 +391,7 @@
396
391
  .qtip-tipsy .qtip-content{
397
392
  padding: 6px 10px;
398
393
  }
399
-
394
+
400
395
  .qtip-tipsy .qtip-icon{
401
396
  border-color: #222;
402
397
  text-shadow: none;
@@ -562,12 +557,11 @@
562
557
  }
563
558
 
564
559
 
565
-
566
560
  .qtip .qtip-tip{
567
561
  margin: 0 auto;
568
562
  overflow: hidden;
569
563
  z-index: 10;
570
-
564
+
571
565
  }
572
566
 
573
567
  /* Opera bug #357 - Incorrect tip position
@@ -585,7 +579,7 @@
585
579
  background: transparent;
586
580
  border: 0 dashed transparent;
587
581
  }
588
-
582
+
589
583
  .qtip .qtip-tip canvas{ top: 0; left: 0; }
590
584
 
591
585
  .qtip .qtip-tip .qtip-vml{
@@ -594,10 +588,11 @@
594
588
  visibility: visible;
595
589
  }
596
590
 
591
+
597
592
  #qtip-overlay{
598
593
  position: fixed;
599
- left: -10000em;
600
- top: -10000em;
594
+ left: 0; top: 0;
595
+ width: 100%; height: 100%;
601
596
  }
602
597
 
603
598
  /* Applied to modals with show.modal.blur set to true */
@@ -617,7 +612,6 @@
617
612
  }
618
613
 
619
614
 
620
-
621
615
  .qtipmodal-ie6fix{
622
616
  position: absolute !important;
623
- }
617
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qtip2-jquery-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.108
4
+ version: 2.2.100
5
5
  platform: ruby
6
6
  authors:
7
7
  - Doc Walker
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-15 00:00:00.000000000 Z
11
+ date: 2014-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties