Skip to content

Commit 9036745

Browse files
committed
fix: add change for cursor pointer
1 parent a7f711c commit 9036745

File tree

9 files changed

+30
-9
lines changed

9 files changed

+30
-9
lines changed

src/app/components/tangle/FeatureBlock.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ class FeatureBlock extends Component<FeatureBlockProps, FeatureBlockState> {
4343
>
4444
<DropdownIcon />
4545
</div>
46-
<h3>{NameHelper.getFeatureBlockTypeName(this.props.featureBlock.type)}</h3>
46+
<h3 className="card--content__input--label">
47+
{NameHelper.getFeatureBlockTypeName(this.props.featureBlock.type)}
48+
</h3>
4749
</div>
4850

4951
{this.state.showDetails && (

src/app/components/tangle/MigratedFund.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ class MigratedFund extends Component<MigratedFundProps, MigratedFundState> {
5454
>
5555
<DropdownIcon />
5656
</div>
57-
<h3>Migrated Fund {this.props.index}</h3>
57+
<h3 className="card--content__input--label">
58+
Migrated Fund {this.props.index}
59+
</h3>
5860
</div>
5961
{this.state.showDetails && (
6062
<div className="card--content--border-l">

src/app/components/tangle/MilestonePayload.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,9 @@ class MilestonePayload extends Component<MilestonePayloadProps, MilestonePayload
126126
>
127127
<DropdownIcon />
128128
</div>
129-
<h3>Options</h3>
129+
<h3 className="card--content__input--label">
130+
Options
131+
</h3>
130132
</div>
131133
</div>
132134
{this.state.showOptions && (
@@ -158,7 +160,9 @@ class MilestonePayload extends Component<MilestonePayloadProps, MilestonePayload
158160
>
159161
<DropdownIcon />
160162
</div>
161-
<h3>Signatures</h3>
163+
<h3 className="card--content__input--label">
164+
Signatures
165+
</h3>
162166
</div>
163167
</div>
164168
{this.state.showSignatures && (

src/app/components/tangle/Output.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ class Output extends Component<OutputProps, OutputState> {
5151
>
5252
<DropdownIcon />
5353
</div>
54-
<h3>{NameHelper.getOutputTypeName(this.state.output.type)} {this.props.index}</h3>
54+
<h3 className="card--content__input--label">
55+
{NameHelper.getOutputTypeName(this.state.output.type)} {this.props.index}
56+
</h3>
5557
</div>
5658
<div className="card--value card--value__mono">
5759
<button

src/app/components/tangle/PoWMilestoneOption.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ class PoWMilestoneOption extends Component<PoWMilestoneOptionProps, PoWMilestone
4040
>
4141
<DropdownIcon />
4242
</div>
43-
<h3>PoW</h3>
43+
<h3 className="card--content__input--label">
44+
PoW
45+
</h3>
4446
</div>
4547
{this.state.showDetails && (
4648
<div className="card--content--border-l">

src/app/components/tangle/ReceiptMilestoneOption.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ class ReceiptMilestoneOption extends Component<ReceiptMilestoneOptionProps, Rece
4343
>
4444
<DropdownIcon />
4545
</div>
46-
<h3>Receipt</h3>
46+
<h3 className="card--content__input--label">
47+
Receipt
48+
</h3>
4749
</div>
4850
{this.state.showReceiptDetails && (
4951
<div className="card--content--border-l">

src/app/components/tangle/UTXOInput.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ class UTXOInput extends Component<UTXOInputProps, UTXOInputState> {
4343
>
4444
<DropdownIcon />
4545
</div>
46-
<h3>{NameHelper.getInputTypeName(this.props.input.type)} {this.props.index}</h3>
46+
<h3 className="card--content__input--label">
47+
{NameHelper.getInputTypeName(this.props.input.type)} {this.props.index}
48+
</h3>
4749
</div>
4850

4951
{this.state.showDetails && (

src/app/components/tangle/UnlockCondition.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ class UnlockCondition extends Component<UnlockConditionProps, UnlockCondtionStat
4444
>
4545
<DropdownIcon />
4646
</div>
47-
<h3>{NameHelper.getUnlockConditionTypeName(this.props.unlockCondition.type)}</h3>
47+
<h3 className="card--content__input--label">
48+
{NameHelper.getUnlockConditionTypeName(this.props.unlockCondition.type)}
49+
</h3>
4850
</div>
4951

5052
{this.state.showDetails && (

src/scss/card.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,9 @@
143143
transform: rotate(90deg);
144144
}
145145
}
146+
.card--content__input--label {
147+
cursor: pointer;
148+
}
146149
}
147150
}
148151

0 commit comments

Comments
 (0)