mirror of
				https://git.openwrt.org/project/luci.git
				synced 2025-10-31 10:49:03 +08:00 
			
		
		
		
	 ae8bbb814f
			
		
	
	ae8bbb814f
	
	
	
		
			
			* HTML Cleanup: Meta tags. * Converted charset to shorthand. * Removed meta tags with `Content-Script-Type` attribute. (Invalid in HTML5 spec.) * HTML Cleanup: CSS tags. * Removed `type` attribute with CSS files from link tags. (HTML5 spec recommends omitting it.) * Removed `type` attribute from style tags. (Deprecated in HTML5 spec.) https://html.spec.whatwg.org/#attr-link-type https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style * HTML Cleanup: Convert from XHTML to HTML5 * Removed XML declaration. * Removed XML namespace. * Changed doctype to HTML5. * HTML Cleanup: CDATA tags. * CDATA sections should not be used within HTML they are considered as comments and not displayed. https://developer.mozilla.org/en-US/docs/Web/API/CDATASection * HTML Cleanup: Script tags. * Removed `language` attribute from script tags. (No longer valid in HTML5) * Removed `type` attribute with JavaScript MIME type from script tags. (HTML5 spec recommends omitting it.) https://html.spec.whatwg.org/multipage/scripting.html#attr-script-type https://mimesniff.spec.whatwg.org/#javascript-mime-type Signed-off-by: Mustafa Can Elmacı <mustafacan@elmaci.net>
		
			
				
	
	
		
			39 lines
		
	
	
		
			475 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			475 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <style>
 | |
| 	h4
 | |
| 	{
 | |
| 		white-space: nowrap;
 | |
| 		border-bottom: 0px;
 | |
| 		margin: 10px 5px 5px 5px;
 | |
| 	}
 | |
| 	.tr
 | |
| 	{
 | |
| 		border: 0px;
 | |
| 		text-align: left;
 | |
| 	}
 | |
| 	.vpn-output
 | |
| 	{
 | |
| 		box-shadow: none;
 | |
| 		margin: 10px 5px 5px 5px;
 | |
| 		color: #a22;
 | |
| 	}
 | |
| 	textarea
 | |
| 	{
 | |
| 		border: 1px solid #cccccc;
 | |
| 		padding: 5px;
 | |
| 		font-size: 12px;
 | |
| 		font-family: monospace;
 | |
| 		resize: none;
 | |
| 		white-space: pre;
 | |
| 		overflow-wrap: normal;
 | |
| 		overflow-x: scroll;
 | |
| 	}
 | |
| 	a
 | |
| 	{
 | |
| 		line-height: 1.5;
 | |
| 	}
 | |
| 	hr
 | |
| 	{
 | |
| 		margin: 0.5em 0;
 | |
| 	}
 | |
| </style>
 |