mirror of
				https://github.com/Jermolene/TiddlyWiki5
				synced 2025-11-04 09:33:00 +00:00 
			
		
		
		
	* tc-body transparent if background attachment if you go fullscreen with the fullscreen button, the tc-body background color hides the background attachments - so make it transparent if $:/themes/tiddlywiki/vanilla/settings/backgroundimage isn't empty * if background attachment macro macro to make tc-body background transparent
		
			
				
	
	
		
			77 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
title: $:/core/macros/CSS
 | 
						|
tags: $:/tags/Macro
 | 
						|
 | 
						|
\define colour(name)
 | 
						|
<$transclude tiddler={{$:/palette}} index="$name$"><$transclude tiddler="$:/palettes/Vanilla" index="$name$"/></$transclude>
 | 
						|
\end
 | 
						|
 | 
						|
\define color(name)
 | 
						|
<<colour $name$>>
 | 
						|
\end
 | 
						|
 | 
						|
\define box-shadow(shadow)
 | 
						|
``
 | 
						|
  -webkit-box-shadow: $shadow$;
 | 
						|
     -moz-box-shadow: $shadow$;
 | 
						|
          box-shadow: $shadow$;
 | 
						|
``
 | 
						|
\end
 | 
						|
 | 
						|
\define filter(filter)
 | 
						|
``
 | 
						|
  -webkit-filter: $filter$;
 | 
						|
     -moz-filter: $filter$;
 | 
						|
          filter: $filter$;
 | 
						|
``
 | 
						|
\end
 | 
						|
 | 
						|
\define transition(transition)
 | 
						|
``
 | 
						|
  -webkit-transition: $transition$;
 | 
						|
     -moz-transition: $transition$;
 | 
						|
          transition: $transition$;
 | 
						|
``
 | 
						|
\end
 | 
						|
 | 
						|
\define transform-origin(origin)
 | 
						|
``
 | 
						|
  -webkit-transform-origin: $origin$;
 | 
						|
     -moz-transform-origin: $origin$;
 | 
						|
          transform-origin: $origin$;
 | 
						|
``
 | 
						|
\end
 | 
						|
 | 
						|
\define background-linear-gradient(gradient)
 | 
						|
``
 | 
						|
background-image: linear-gradient($gradient$);
 | 
						|
background-image: -o-linear-gradient($gradient$);
 | 
						|
background-image: -moz-linear-gradient($gradient$);
 | 
						|
background-image: -webkit-linear-gradient($gradient$);
 | 
						|
background-image: -ms-linear-gradient($gradient$);
 | 
						|
``
 | 
						|
\end
 | 
						|
 | 
						|
\define column-count(columns)
 | 
						|
``
 | 
						|
-moz-column-count: $columns$;
 | 
						|
-webkit-column-count: $columns$;
 | 
						|
column-count: $columns$;
 | 
						|
``
 | 
						|
\end
 | 
						|
 | 
						|
\define datauri(title)
 | 
						|
<$macrocall $name="makedatauri" type={{$title$!!type}} text={{$title$}}/>
 | 
						|
\end
 | 
						|
 | 
						|
\define if-sidebar(text)
 | 
						|
<$reveal state="$:/state/sidebar" type="match" text="yes" default="yes">$text$</$reveal>
 | 
						|
\end
 | 
						|
 | 
						|
\define if-no-sidebar(text)
 | 
						|
<$reveal state="$:/state/sidebar" type="nomatch" text="yes" default="yes">$text$</$reveal>
 | 
						|
\end
 | 
						|
 | 
						|
\define if-background-attachment(text)
 | 
						|
<$reveal state="$:/themes/tiddlywiki/vanilla/settings/backgroundimage" type="nomatch" text="">$text$</$reveal>
 | 
						|
\end
 |