1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00

Firefox: fix tooltip animation

This commit is contained in:
Deathamns 2015-01-13 21:33:26 +01:00
parent bcc1c0da11
commit 7bf0113db9
3 changed files with 8 additions and 19 deletions

View File

@ -917,7 +917,7 @@ var httpObserver = {
}
try {
// [tabId, type, sourceTabId - given if it was a popup]
// [type, tabId, sourceTabId - given if it was a popup]
channelData = channel.getProperty(location.host + 'reqdata');
} catch (ex) {
return;

View File

@ -18,7 +18,7 @@
cursor: pointer;
position: relative;
}
body:not(.advancedUser) [data-tip]:hover:after {
body:not(.advancedUser) [data-tip]:after {
background-color: #ffffee;
border: 1px solid gray;
border-radius: 3px;
@ -36,13 +36,12 @@ body:not(.advancedUser) [data-tip]:hover:after {
white-space: pre-line;
z-index: 20;
pointer-events: none;
animation: tooltip 0.8s;
-webkit-animation: tooltip 0.8s;
opacity: 0;
}
[data-tip]:hover::after {
opacity: 1;
-webkit-transition: opacity 0.2s 0.2s;
transition: opacity 0.2s 0.2s;
[data-tip]:hover:after {
opacity: 1 !important;
-webkit-transition: opacity 0.2s 0.4s;
transition: opacity 0.2s 0.4s;
}
body[dir=rtl] [data-tip]:hover:after {
text-align: right;
@ -61,17 +60,6 @@ body[dir=rtl] [data-tip][data-tip-anchor="top"]:hover:after {
right: -500%;
}
@keyframes tooltip {
0% { opacity: 0; }
85% { opacity: 0; }
100% { opacity: 1; }
}
@-webkit-keyframes tooltip {
0% { opacity: 0; }
85% { opacity: 0; }
100% { opacity: 1; }
}
.hiddenFileInput {
visibility: hidden;
width: 0;

View File

@ -6,6 +6,7 @@ body {
margin: 0;
padding: 0;
white-space: nowrap;
overflow: hidden;
}
h1,h2,h3,h4 {
background-color: #444;