File tree Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ export default class SchemaTable extends LitElement {
82
82
${ this . schemaDescriptionExpanded === 'true' ? 'Single line description' : 'Multiline description' }
83
83
</ div >
84
84
</ div >
85
- < div style ='padding: 5px 0; color:var(--fg3 ) '>
85
+ < div style ='padding: 5px 0; color:var(--fg2 ) '>
86
86
< span class ='bold-text upper '> ${ this . data ? this . data [ '::type' ] : '' } </ span >
87
87
< span class ='m-markdown ' > ${ this . data ? unsafeHTML ( marked ( this . data [ '::description' ] || '' ) ) : '' } </ span >
88
88
</ div >
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ export default class SchemaTree extends LitElement {
83
83
return html `
84
84
< div class ="tree ${ this . schemaDescriptionExpanded === 'true' ? 'expanded-descr' : 'collapsed-descr' } ">
85
85
< div class ='toolbar '>
86
- < div class ='toolbar-item bold-text upper ' style ='cursor:auto; color:var(--fg3 ) '> ${ this . data ? this . data [ '::type' ] : '' } </ div >
86
+ < div class ='toolbar-item bold-text upper ' style ='cursor:auto; color:var(--fg2 ) '> ${ this . data ? this . data [ '::type' ] : '' } </ div >
87
87
< div style ="flex:1 "> </ div >
88
88
< div class ='toolbar-item ' @click ='${ ( ) => { this . schemaDescriptionExpanded = ( this . schemaDescriptionExpanded === 'true' ? 'false' : 'true' ) ; } } '>
89
89
${ this . schemaDescriptionExpanded === 'true' ? 'Single line description' : 'Multiline description' }
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ export default css`
140
140
margin-top : 4px ;
141
141
padding : 2px 4px ;
142
142
background-color : var (--bg3 );
143
- color : var (--fg3 );
143
+ color : var (--fg2 );
144
144
}
145
145
146
146
.m-markdown-small pre code ,
@@ -205,6 +205,7 @@ export default css`
205
205
.m-markdown th {
206
206
vertical-align : top;
207
207
border-top : 1px solid var (--border-color );
208
+ line-height : calc (var (--font-size-small ) + 4px );
208
209
}
209
210
210
211
.m-markdown-small tr : first-child th ,
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export default css`
27
27
}
28
28
29
29
.m-table th {
30
- color : var (--fg3 );
30
+ color : var (--fg2 );
31
31
font-size : var (--font-size-small );
32
32
line-height : calc (var (--font-size-small ) + 18px );
33
33
font-weight : 600 ;
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ function componentBodyTemplate(sComponent) {
13
13
< h1 > ${ sComponent . name } </ h1 >
14
14
${ sComponent . component
15
15
? html `
16
- < div class ='mono-font regular-font-size ' style ='padding: 8px 0; color:var(--fg3 ) '>
16
+ < div class ='mono-font regular-font-size ' style ='padding: 8px 0; color:var(--fg2 ) '>
17
17
18
18
< json-tree
19
19
class ="border tree "
You can’t perform that action at this time.
0 commit comments