mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-13 09:59:17 +01:00
8882d219a6
This commit includes the newsfoot.js script in the iOS page.html file and copies css from the Mac styleSheet.css into the iOS styleSheet.css. The is only one difference in the styles between the two: iOS defines left and right to be in terms of the viewport width rather than a fixed size. This ensures that the popover is always within the visible area.
15 lines
286 B
HTML
15 lines
286 B
HTML
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width">
|
|
<style>
|
|
:root {
|
|
color-scheme: light dark;
|
|
}
|
|
</style>
|
|
<script src="main.js"></script>
|
|
<script src="newsfoot.js" async="async"></script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|