1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-03 01:29:39 +02:00
uBlock/popup.html

92 lines
1.7 KiB
HTML
Raw Normal View History

2014-06-24 00:42:43 +02:00
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="css/common.css" type="text/css">
<style>
body {
margin: 0;
border: 0;
padding: 0;
font: 13px sans-serif;
background-color: white;
}
h1,h2,h3,h4 {
margin: 0;
padding: 4px;
border: 0;
color: white;
background-color: #444;
text-align: center;
}
2014-06-24 07:20:59 +02:00
a {
color: inherit;
text-decoration: none;
}
*:focus {
outline: 0;
}
#version {
margin-left: 1em;
font-weight: normal;
font-size: 11px;
}
2014-06-24 00:42:43 +02:00
body > div {
2014-06-24 07:20:59 +02:00
padding: 4px 12px 0 12px;
2014-06-24 00:42:43 +02:00
}
p {
margin: 16px 0;
white-space: nowrap;
text-align: center;
}
#page-blocked {
margin-top: 4px;
font-size: 20px;
}
#total-blocked {
margin-top: 4px;
font-size: 14px;
}
#stats {
margin-bottom: 4px;
text-align: center;
}
#switch .fa {
font-size: 48px;
color: green;
cursor: pointer;
}
#switch .fa.off {
color: #ccc;
}
#options {
2014-06-24 02:03:41 +02:00
margin: 16px 0 0 0;
font-size: 12px;
2014-06-24 00:42:43 +02:00
}
.dim {
2014-06-24 07:20:59 +02:00
color: #888;
2014-06-24 00:42:43 +02:00
text-decoration: none;
}
</style>
<title>µBlock</title>
</head>
<body>
2014-06-24 07:20:59 +02:00
<h4><a href="dashboard.html" target="_blank" title="Click to open the dashboard">µBlock<span id="version"></span></a></h4>
2014-06-24 00:42:43 +02:00
<div>
<p id="switch"><span class="fa">&#xf011;</span></p>
2014-06-24 02:03:41 +02:00
<p style="font-size: 16px;" data-i18n="popupBlockedRequestPrompt"></p>
<p id="stats" data-i18n="popupBlockedOnThisPagePrompt"></p>
2014-06-24 00:42:43 +02:00
<p id="page-blocked">?</p>
2014-06-24 02:03:41 +02:00
<p id="stats" data-i18n="popupBlockedSinceInstallPrompt"></p>
2014-06-24 00:42:43 +02:00
<p id="total-blocked">?</p>
</div>
2014-06-24 02:03:41 +02:00
<script src="js/i18n.js"></script>
2014-06-24 00:42:43 +02:00
<script src="js/messaging-client.js"></script>
<script src="js/popup.js"></script>
</body>
</html>