Revision control
Copy as Markdown
Other Tools
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
<!DOCTYPE html>
<head>
<title></title>
<meta
http-equiv="Content-Security-Policy"
content="default-src chrome:; script-src chrome: 'unsafe-inline' moz-src:; style-src chrome: 'unsafe-inline'"
/>
<link
rel="stylesheet"
/>
<link rel="localization" href="messenger/treeView.ftl" />
<script
defer="defer"
></script>
<script
type="module"
></script>
<script defer="defer" src="panorama.js"></script>
<style>
body {
display: flex;
height: 100vh;
margin: 0;
flex-direction: row;
}
ul {
padding-inline-start: 2em;
}
#folderList {
white-space: nowrap;
overflow: hidden auto;
margin: 0;
}
#folderList + div {
flex: 1;
display: flex;
flex-direction: column;
}
#messageList {
flex: 1;
}
</style>
</head>
<body>
<ul id="folderList"></ul>
<div>
<div>
<label
><input id="threaded_messages" type="checkbox" /> Threads only</label
>
</div>
<auto-tree-view id="messageList"></auto-tree-view>
</div>
</body>
</html>