mirror of
				https://github.com/XRPLF/xrpl-dev-portal.git
				synced 2025-11-04 11:55:50 +00:00 
			
		
		
		
	Differences between original: - react18-json-view used for responses - cleaned up markup for expand and collapse Original work on this was done by @khancode Co-authored-by: Omar Khan <khancodegt@gmail.com> Fix RPC sidebar and width
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
// Styles for the legacy XRP Ledger RPC Tool. Minimally maintained.
 | 
						|
@import '../node_modules/react18-json-view/src/style';
 | 
						|
 | 
						|
.json-view {
 | 
						|
  font-family: $font-family-monospace;
 | 
						|
  padding: 1em;
 | 
						|
  background: $gray-800;
 | 
						|
  overflow: hidden;
 | 
						|
  color: $gray-100 !important;
 | 
						|
  font-size: 14px;
 | 
						|
  letter-spacing: 0;
 | 
						|
 | 
						|
  svg {
 | 
						|
    height: 11px !important;
 | 
						|
    color: $gray-100;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.jv-button {
 | 
						|
  color: $orange-500 !important;
 | 
						|
  font-size: 14px;
 | 
						|
}
 | 
						|
 | 
						|
.jv-indent {
 | 
						|
  border-left: 1px solid $gray-600;
 | 
						|
  margin: 4px;
 | 
						|
}
 | 
						|
 | 
						|
/* stylelint-disable selector-class-pattern -- react18-json-view uses these */
 | 
						|
.json-view--boolean {
 | 
						|
  color: $magenta-600 !important;
 | 
						|
}
 | 
						|
 | 
						|
.json-view--pair {
 | 
						|
  margin: 4px;
 | 
						|
}
 | 
						|
 | 
						|
.json-view--property {
 | 
						|
  color: $gray-100 !important;
 | 
						|
}
 | 
						|
 | 
						|
.json-view--null,
 | 
						|
.json-view--undefined {
 | 
						|
  display: inline-block;
 | 
						|
  padding: 1px 2px;
 | 
						|
  border-radius: 3px;
 | 
						|
  background-color: $gray-600;
 | 
						|
  color: $gray-100 !important;
 | 
						|
  font-size: 11px;
 | 
						|
}
 | 
						|
 | 
						|
.json-view--number {
 | 
						|
  color: $green-300 !important;
 | 
						|
}
 | 
						|
 | 
						|
.json-view--string {
 | 
						|
  color: $orange-500 !important;
 | 
						|
}
 | 
						|
 | 
						|
/* stylelint-enable selector-class-pattern */
 | 
						|
 | 
						|
.rpc-tool {
 | 
						|
  .nav-link {
 | 
						|
    cursor: pointer;
 | 
						|
    -webkit-touch-callout: none;
 | 
						|
    -webkit-user-select: none;
 | 
						|
    -khtml-user-select: none;
 | 
						|
    -moz-user-select: none;
 | 
						|
    -ms-user-select: none;
 | 
						|
    user-select: none;
 | 
						|
    padding: 6px 9px;
 | 
						|
  }
 | 
						|
}
 |