1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-30 14:47:12 +02:00
uBlock/src/css/common.css

74 lines
1.6 KiB
CSS
Raw Normal View History

2014-06-24 00:42:43 +02:00
@font-face {
font-family: 'FontAwesome';
src: url('fonts/fontawesome-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
2014-06-24 00:42:43 +02:00
.fa {
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
line-height: 1;
vertical-align: baseline;
display: inline-block;
}
2014-08-24 16:04:22 +02:00
/* https://developer.mozilla.org/en-US/docs/Web/CSS/::after#Tooltips */
[data-tip] {
2014-08-24 16:04:22 +02:00
cursor: pointer;
position: relative;
}
body:not(.advancedUser) [data-tip]:hover:after {
2014-08-24 16:04:22 +02:00
background-color: #ffffee;
border: 1px solid gray;
border-radius: 3px;
box-shadow: 1px 1px 3px gray;
color: black;
content: attr(data-tip);
font: 12px sans-serif;
2014-08-24 16:04:22 +02:00
left: 0;
line-height: 130%;
min-width: 55%;
2014-08-24 16:04:22 +02:00
padding: 4px 6px;
position: absolute;
text-align: left;
2014-08-24 16:04:22 +02:00
top: 110%;
white-space: pre-line;
z-index: 20;
animation: tooltip 0.8s;
-webkit-animation: tooltip 0.8s;
}
body[dir=rtl] [data-tip]:hover:after {
text-align: right;
}
2015-01-07 18:19:37 +01:00
body [data-tip][data-tip-anchor="top"]:hover:after {
2014-12-05 15:53:59 +01:00
bottom: 140%;
2014-08-24 16:04:22 +02:00
top: auto;
}
2014-12-05 15:53:59 +01:00
body[dir=ltr] [data-tip][data-tip-anchor="top"]:hover:after {
left: -500%;
right: 0;
}
body[dir=rtl] [data-tip][data-tip-anchor="top"]:hover:after {
2014-12-05 15:53:59 +01:00
left: 0;
right: -500%;
}
2014-08-24 16:04:22 +02:00
@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;
height: 0;
}