1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
piwik-chrome-extention/popup.html

35 lines
694 B
HTML
Raw Permalink Normal View History

2016-08-25 12:22:02 +02:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Piwik Popup</title>
<style>
body {
/*font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;*/
font-size: 100%;
}
table {
white-space: nowrap;
}
/*
#v {
!* avoid an excessively wide status text *!
white-space: pre;
text-overflow: ellipsis;
!*overflow: hidden;*!
!*max-width: 400px;*!
}
*/
</style>
</head>
<body>
<table id="visitors"></table>
<script src="main.js"></script>
</body>
</html>