1. .InspectedElement {
    
  2.   display: flex;
    
  3.   flex-direction: column;
    
  4.   height: 100%;
    
  5.   width: 100%;
    
  6.   border-left: 1px solid var(--color-border);
    
  7.   border-top: 1px solid var(--color-border);
    
  8. }
    
  9. 
    
  10. .TitleRow {
    
  11.   flex: 0 0 42px;
    
  12.   display: flex;
    
  13.   align-items: center;
    
  14.   font-size: var(--font-size-monospace-large);
    
  15.   border-bottom: 1px solid var(--color-border);
    
  16.   padding: 0.5rem;
    
  17. }
    
  18. 
    
  19. .Key {
    
  20.   flex: 0 1 auto;
    
  21.   padding-left: 0.25rem;
    
  22.   padding-right: 0.125rem;
    
  23.   line-height: 1rem;
    
  24.   border-top-left-radius: 0.125rem;
    
  25.   border-bottom-left-radius: 0.125rem;
    
  26.   display: inline-block;
    
  27.   background-color: var(--color-component-badge-background);
    
  28.   color: var(--color-text);
    
  29.   font-family: var(--font-family-monospace);
    
  30.   font-size: var(--font-size-monospace-small);
    
  31.   white-space: nowrap;
    
  32.   overflow: hidden;
    
  33.   text-overflow: ellipsis;
    
  34.   max-width: 100%;
    
  35. }
    
  36. 
    
  37. .KeyArrow {
    
  38.   height: 1rem;
    
  39.   width: 1rem;
    
  40.   margin-right: -0.25rem;
    
  41.   border: 0.5rem solid transparent;
    
  42.   border-left: 0.5rem solid var(--color-component-badge-background);
    
  43. }
    
  44. 
    
  45. .SelectedComponentName {
    
  46.   flex: 1 1 auto;
    
  47.   overflow: hidden;
    
  48.   text-overflow: ellipsis;
    
  49.   line-height: normal;
    
  50. }
    
  51. 
    
  52. .Component {
    
  53.   flex: 1 1 auto;
    
  54.   color: var(--color-component-name);
    
  55.   font-family: var(--font-family-monospace);
    
  56.   font-size: var(--font-size-monospace-normal);
    
  57.   white-space: nowrap;
    
  58.   overflow: hidden;
    
  59.   text-overflow: ellipsis;
    
  60.   max-width: 100%;
    
  61. }
    
  62. 
    
  63. .Loading {
    
  64.   padding: 0.25rem;
    
  65.   color: var(--color-dimmer);
    
  66.   font-style: italic;
    
  67.   border-left: 1px solid var(--color-border);
    
  68. }
    
  69. 
    
  70. .StrictModeNonCompliant {
    
  71.   margin-right: 0.25rem;
    
  72.   color: var(--color-console-error-icon);
    
  73. }