Rev 301 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 301 | Rev 303 | ||
|---|---|---|---|
| Line 30... | Line 30... | ||
| 30 | 30 | ||
| 31 | .tooltip-container .tooltip { |
31 | .tooltip-container .tooltip { |
| 32 | visibility: hidden; |
32 | visibility: hidden; |
| 33 | opacity: 0; |
33 | opacity: 0; |
| 34 | <?php |
34 | <?php |
| 35 | Mixins::transition('-property', 'opacity, visibility'); |
35 | Mixins::transition('-property', 'opacity, visibility, z-index'); |
| 36 | Mixins::transition('-delay', '0.5s, 0.6s'); |
36 | Mixins::transition('-delay', '0.5s, 0.6s, 0.6s'); |
| 37 | Mixins::transition('-duration', '0.1s, 0s'); |
37 | Mixins::transition('-duration', '0.1s, 0s, 0s'); |
| 38 | ?>
|
38 | ?>
|
| 39 | position: absolute; |
39 | position: absolute; |
| 40 | width: 11em; |
40 | width: 11em; |
| 41 | height: auto; |
41 | height: auto; |
| 42 | padding: 2px 5px 5px 5px; |
42 | padding: 2px 5px 5px 5px; |
| Line 59... | Line 59... | ||
| 59 | .tooltip-contaniner:focus .tooltip |
59 | .tooltip-contaniner:focus .tooltip |
| 60 | {
|
60 | {
|
| 61 | visibility: visible; |
61 | visibility: visible; |
| 62 | opacity: 1; |
62 | opacity: 1; |
| 63 | <?php |
63 | <?php |
| 64 | Mixins::transition('-property', 'opacity'); |
64 | Mixins::transition('-property', 'opacity, z-index'); |
| 65 | Mixins::transition('-delay', '0.5s'); |
65 | Mixins::transition('-delay', '0.5s, 0s'); |
| 66 | Mixins::transition('-duration', '0.1s'); |
66 | Mixins::transition('-duration', '0.1s, 0s'); |
| 67 | ?>
|
67 | ?>
|
| 68 | z-index: 1337; |
68 | z-index: 1337; |
| 69 | }
|
69 | }
|
| 70 | 70 | ||
| 71 | /* Copyright note */
|
71 | /* Copyright note */
|