 752998e30b
			
		
	
	
		752998e30b
		
	
	
	
	
		
			
			Fixes #201 and #144 * In the admin area of the style Flatmaas-Rev is no longer tried via stylesheet to include the image nib-logo.png. * In the preview of the Leggero style "Posted by + time" is now displayed right-aligned - as in the blog. * The heading for posts and pages has received its own CSS class "entry-title". * In all three styles, both heading sizes are now displayed correctly; as in the blog, so in the preview. * The publication date is truncated from h2 and now uses h6. * Font size h4 can now also be conveniently set via BBCode button. * Long single line code in leggero-v2 style is now wrapped when printing.
		
			
				
	
	
		
			104 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| /*
 | |
| ===================
 | |
| Leggero CSS Styles
 | |
| ===================
 | |
| 
 | |
| Name: Leggero v2
 | |
| Author: Laborix
 | |
| Version: 0.1
 | |
| Module: print.css
 | |
| */
 | |
| 
 | |
| body {
 | |
|   color: #333;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| a {
 | |
|   color: #333;
 | |
|   background-color: transparent;
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| h1 {
 | |
|   font-size: 130%; 
 | |
| }
 | |
| 
 | |
| h2 {
 | |
|   font-size: 130%; 
 | |
| }
 | |
| 
 | |
| h3 {
 | |
|   font-size: 100%; 
 | |
| }
 | |
| 
 | |
| h4 {
 | |
|   font-size: 100%; 
 | |
| }
 | |
| 
 | |
| .date {
 | |
|   font-size: 100%;
 | |
| }
 | |
| 
 | |
| #column {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .admincontrols {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .readmore {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .navigation {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .entry-footer {
 | |
|   clear: both;
 | |
|   font-size: 80%;
 | |
|   margin: 2em 0 3em 0;
 | |
| }
 | |
| 
 | |
| blockquote {
 | |
| 	margin: 1em 1em;
 | |
| 	padding: 0 10px;
 | |
| 	width: 90%;
 | |
| 	color: #333;
 | |
| 	background-color: transparent;
 | |
| 	font-style: italic;
 | |
| 	border-left: 5px solid #bbb;
 | |
| }
 | |
| 
 | |
| pre {
 | |
|   clear: both;
 | |
|   margin: 0.5em 0 0.5em 0;
 | |
|   padding: 0.5em;
 | |
|   width: 90%;
 | |
|   color: #333;
 | |
|   background-color: #eee;
 | |
|   font-size: 70%;
 | |
|   border: 1px dotted #333;
 | |
|   white-space: pre-line;
 | |
|   overflow: auto;
 | |
|   text-overflow: ellipsis;
 | |
| }
 | |
| 
 | |
| .link-comments {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| hr {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| #footer {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| #commentform {
 | |
|   display: none;
 | |
| }
 |