mirror of
				https://github.com/notion-enhancer/notion-enhancer.git
				synced 2025-11-04 08:08:08 +11:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			680 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			680 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
/*
 | 
						|
 * property layout
 | 
						|
 * (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
 | 
						|
 * (c) 2020 alexander-kazakov
 | 
						|
 * under the MIT license
 | 
						|
 */
 | 
						|
 | 
						|
.propertylayout-hidden {
 | 
						|
  display: none;
 | 
						|
}
 | 
						|
 | 
						|
.propertylayout-toggle {
 | 
						|
  width: 100%;
 | 
						|
  text-align: left;
 | 
						|
  font-size: 0.85em;
 | 
						|
  padding: 0.25em;
 | 
						|
  background: transparent;
 | 
						|
  color: var(--theme--text_ui);
 | 
						|
  border: none;
 | 
						|
  border-radius: 2px;
 | 
						|
  transition: background 200ms;
 | 
						|
}
 | 
						|
.notion-scroller.vertical > div > :first-child .propertylayout-toggle {
 | 
						|
  margin-top: 1em;
 | 
						|
}
 | 
						|
.propertylayout-toggle[data-action='show'] {
 | 
						|
  margin-bottom: 1em;
 | 
						|
}
 | 
						|
.propertylayout-toggle:hover {
 | 
						|
  background: var(--theme--interactive_hover);
 | 
						|
}
 |