diff options
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/Tile.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Tile.vue b/src/components/Tile.vue index 3407b3f..df48e25 100644 --- a/src/components/Tile.vue +++ b/src/components/Tile.vue @@ -193,7 +193,7 @@ export default defineComponent({ padding: this.uiOpts.leafTilePadding + 'px', lineHeight: this.uiOpts.leafHeaderFontSz + 'px', fontSize: this.uiOpts.leafHeaderFontSz + 'px', - fontStyle: this.tolNode.pSupport ? 'normal' : 'italic', + fontStyle: (this.tolNode.pSupport || this.tolNode.parent == null) ? 'normal' : 'italic', color: headerColor, // For ellipsis overflow: 'hidden', @@ -228,7 +228,7 @@ export default defineComponent({ borderTopLeftRadius: 'inherit', borderTopRightRadius: 'inherit', backgroundColor: this.uiOpts.nonleafHeaderBgColor, - fontStyle: this.tolNode.pSupport ? 'normal' : 'italic', + fontStyle: (this.tolNode.pSupport || this.tolNode.parent == null) ? 'normal' : 'italic', }; if (this.isOverflownRoot){ styles = { |
