blob: a91364750be713ecc2979460da831b213337b8b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
<!DOCTYPE html>
<html>
<head>
<script>
function debug(msg) {
document.getElementById('debug').textContent = msg;
}
</script>
<style>
body {
background-color: rgb(187, 187, 187);
margin: 0;
text-align: center;
font-family: sans-serif;
overflow: hidden;
}
h1 {
padding: 0pt 10pt;
font-size: 10pt;
font-weight: normal;
visibility: hidden;
}
#outer:hover h1 {
visibility: visible;
}
#plugin_icon {
opacity: .6;
}
p {
padding: 0pt 14pt;
font-size: 8pt;
}
#outer {
width: 100%;
height: 100%;
position: absolute;
border: 1px black solid;
-webkit-box-sizing: border-box;
}
#inner {
position: relative;
top: 50%;
margin-top: -70px;
}
</style>
</head>
<body id="t" onSelectStart="return false;">
<div i18n-values="title:name" id="outer">
<div id="inner">
<div><img id="plugin_icon" src="plugin_blocked.png" /></div>
<h1 i18n-content="message">PLUGIN_OUTDATED</h1>
<h1 i18n-content="name">PLUGIN_NAME</h1>
<p id="debug"> </p>
</div>
</div>
</body>
</html>
|