59 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <html>
 | |
| 	<head>
 | |
| 		<style>
 | |
| 			body {
 | |
| 				width: 200px;
 | |
| 			}
 | |
| 			#no-styles {
 | |
| 				font-style: italic;
 | |
| 			}
 | |
| 			.checker {
 | |
| 				display: inline;
 | |
| 			}
 | |
| 			.style-name {
 | |
| 				cursor: default;
 | |
| 				display: inline;
 | |
| 				font-weight: bold;
 | |
| 			}
 | |
| 			.actions {
 | |
| 				font-size: x-small;
 | |
| 			}
 | |
| 			a, a:visited {
 | |
| 				color: black;
 | |
| 			}
 | |
| 			.entry {
 | |
| 				padding-bottom: 0.5em;
 | |
| 				margin-bottom: 0.5em;
 | |
| 				border-bottom: 1px solid black;
 | |
| 			}
 | |
| 			#find-styles, #write-style, #manage-styles {
 | |
| 				font-size: smaller;
 | |
| 			}
 | |
| 			#find-styles, #write-style, #unavailable {
 | |
| 				margin-bottom: 0.75em;
 | |
| 			}
 | |
| 			#unavailable {
 | |
| 				display: none;
 | |
| 			}
 | |
| 		</style>
 | |
| 
 | |
| 		<script src="localization.js"></script>
 | |
| 		<script src="health.js"></script>
 | |
| 		<script src="storage.js"></script>
 | |
| 		<script src="messaging.js"></script>
 | |
| </head>
 | |
| <body id="stylish-popup">
 | |
| 
 | |
| 	<div id="unavailable"></div>
 | |
| 
 | |
| 	<div id="installed"></div>
 | |
| 
 | |
| 	<div id="find-styles"><a id="find-styles-link" href="#"></a></div>
 | |
| 	<div id="write-style"><span id="write-style-for"></span></div>
 | |
| 	<div id="manage-styles"><a id="open-manage-link" href="manage.html"></a></div>
 | |
| 
 | |
| 	<script src="popup.js"></script>
 | |
| 
 | |
| </body>
 | |
| </html>
 |