bookmark-stack

web extension to save pages in a stack for reading them later  https://addons.mozilla.org/firefox/addon/bookmark-stack/
git clone https://git.ce9e.org/bookmark-stack.git

commit
686b649b3b83c8213d5d7024a6abbfe3f26d675f
parent
26737f0b38aa01d20cc4c043e1e0cfe187f0312a
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2022-10-15 10:00
indent HTML code

Diffstat

M stack.html 110 ++++++++++++++++++++++++++++++++-----------------------------

1 files changed, 58 insertions, 52 deletions


diff --git a/stack.html b/stack.html

@@ -1,52 +1,58 @@
    1    -1 <meta charset="utf-8" />
    2    -1 <style>
    3    -1 body {
    4    -1 	font-size: 90%;
    5    -1 }
    6    -1 
    7    -1 #bookmarks {
    8    -1 	margin: 0;
    9    -1 	padding: 0;
   10    -1 	list-style: none;
   11    -1 
   12    -1 	line-height: 2;
   13    -1 }
   14    -1 
   15    -1 a {
   16    -1 	color: inherit;
   17    -1 	text-decoration: none;
   18    -1 
   19    -1 	display: block;
   20    -1 	padding: 0 0.2em;
   21    -1 
   22    -1 	white-space: nowrap;
   23    -1 	text-overflow: ellipsis;
   24    -1 	overflow: hidden;
   25    -1 }
   26    -1 a:hover,
   27    -1 a:focus {
   28    -1 	background: #eef;
   29    -1 }
   30    -1 
   31    -1 .icon {
   32    -1 	vertical-align: middle;
   33    -1 	margin-right: 0.5em;
   34    -1 	width: 16px;
   35    -1 }
   36    -1 
   37    -1 @media (prefers-color-scheme: dark) {
   38    -1 	html {
   39    -1 		background: black;
   40    -1 		color: white;
   41    -1 	}
   42    -1 	a:hover,
   43    -1 	a:focus {
   44    -1 		background: #333;
   45    -1 	}
   46    -1 }
   47    -1 </style>
   48    -1 
   49    -1 <ul id="bookmarks"></ul>
   50    -1 
   51    -1 <script src="shared.js"></script>
   52    -1 <script src="stack.js"></script>
   -1     1 <!DOCTYPE html>
   -1     2 <html>
   -1     3 <head>
   -1     4 	<meta charset="utf-8" />
   -1     5 	<style>
   -1     6 		body {
   -1     7 			font-size: 90%;
   -1     8 		}
   -1     9 
   -1    10 		#bookmarks {
   -1    11 			margin: 0;
   -1    12 			padding: 0;
   -1    13 			list-style: none;
   -1    14 
   -1    15 			line-height: 2;
   -1    16 		}
   -1    17 
   -1    18 		a {
   -1    19 			color: inherit;
   -1    20 			text-decoration: none;
   -1    21 
   -1    22 			display: block;
   -1    23 			padding: 0 0.2em;
   -1    24 
   -1    25 			white-space: nowrap;
   -1    26 			text-overflow: ellipsis;
   -1    27 			overflow: hidden;
   -1    28 		}
   -1    29 		a:hover,
   -1    30 		a:focus {
   -1    31 			background: #eef;
   -1    32 		}
   -1    33 
   -1    34 		.icon {
   -1    35 			vertical-align: middle;
   -1    36 			margin-right: 0.5em;
   -1    37 			width: 16px;
   -1    38 		}
   -1    39 
   -1    40 		@media (prefers-color-scheme: dark) {
   -1    41 			html {
   -1    42 				background: black;
   -1    43 				color: white;
   -1    44 			}
   -1    45 			a:hover,
   -1    46 			a:focus {
   -1    47 				background: #333;
   -1    48 			}
   -1    49 		}
   -1    50 	</style>
   -1    51 </head>
   -1    52 <body>
   -1    53 	<ul id="bookmarks"></ul>
   -1    54 
   -1    55 	<script src="shared.js"></script>
   -1    56 	<script src="stack.js"></script>
   -1    57 </body>
   -1    58 </html>