48 lines
		
	
	
		
			990 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			990 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
/* Block listing page */
 | 
						|
.region-title__action {
 | 
						|
  display: inline-block;
 | 
						|
  margin-left: 1em; /* LTR */
 | 
						|
}
 | 
						|
[dir="rtl"] .region-title__action {
 | 
						|
  margin-right: 1em;
 | 
						|
  margin-left: 0;
 | 
						|
}
 | 
						|
 | 
						|
/* Block demo mode */
 | 
						|
.block-region {
 | 
						|
  margin-top: 4px;
 | 
						|
  margin-bottom: 4px;
 | 
						|
  padding: 3px;
 | 
						|
  color: #000;
 | 
						|
  background-color: #ff6;
 | 
						|
}
 | 
						|
a.block-demo-backlink,
 | 
						|
a.block-demo-backlink:link,
 | 
						|
a.block-demo-backlink:visited {
 | 
						|
  position: fixed;
 | 
						|
  z-index: 499;
 | 
						|
  left: 20px; /* LTR */
 | 
						|
  padding: 5px 10px;
 | 
						|
  color: #000;
 | 
						|
  border-radius: 0 0 10px 10px;
 | 
						|
  background-color: #b4d7f0;
 | 
						|
  font-family: "Lucida Grande", Verdana, sans-serif;
 | 
						|
  font-size: small;
 | 
						|
  line-height: 20px;
 | 
						|
}
 | 
						|
a.block-demo-backlink:hover {
 | 
						|
  text-decoration: underline;
 | 
						|
}
 | 
						|
 | 
						|
/* Configure block form - Block description */
 | 
						|
.block-form .form-item-settings-admin-label label {
 | 
						|
  display: inline;
 | 
						|
}
 | 
						|
.block-form .form-item-settings-admin-label label::after {
 | 
						|
  content: ":";
 | 
						|
}
 | 
						|
.block-disabled:not(:hover) {
 | 
						|
  opacity: 0.675;
 | 
						|
  background: #fcfcfa;
 | 
						|
}
 |