aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-28 01:49:10 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-28 01:49:10 -0400
commit8ceaba8b8264f5519de732cc603dcd276b4b4f4d (patch)
treed4f152372abf48c33af02227bdc6ee24ab2c5721 /src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx
parent22760f7f9d79511862851a0d8289b9a6ff9956e7 (diff)
header text no longer shifts left on hover
Diffstat (limited to 'src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx')
-rw-r--r--src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx b/src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx
index d16cde1f8..83a136737 100644
--- a/src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx
+++ b/src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx
@@ -237,11 +237,11 @@ export class SchemaColumnHeader extends ObservableReactComponent<SchemaColumnHea
}}>
<div className="schema-column-resizer left" onPointerDown={e => this._props.resizeColumn(e, this._props.columnIndex)} />
- <div>{this.editableView}</div>
+ <div className="schema-header-text">{this.editableView}</div>
<div className="schema-header-menu">
- <div className="schema-header-button">
- {this.displayButton ? this.headerButton : null}
+ <div className="schema-header-button" style={{opacity: this.displayButton ? '1.0' : '0.0'}}>
+ {this.headerButton}
</div>
</div>
</div>