Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 190b8dd

Browse files
author
vikasrohit
committed
Merge pull request #373 from appirio-tech/feature/mouse-icon-hover-connecting-ext-acc
SUP-2105, Profile Edit-->Mouse hover should not be shown while connec…
2 parents 80869cf + e4ac553 commit 190b8dd

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

app/directives/external-account/external-account.directive.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.ext-tile(ng-repeat="account in accountList | orderBy:'order'", ng-click="!account.disabled && !readOnly && handleClick(account.provider, account.status)", ng-class="{'connected': account.status === 'linked', 'disabled': account.disabled, 'enabled': !account.disabled, 'read-only': readOnly}")
1+
.ext-tile(ng-repeat="account in accountList | orderBy:'order'", ng-click="!account.disabled && !readOnly && handleClick(account.provider, account.status)", ng-class="{'connected': account.status === 'linked', 'connecting': account.status === 'pending', 'disabled': account.disabled, 'enabled': !account.disabled, 'read-only': readOnly}")
22
.external-account-box(ng-class="account.colorClass")
33
i.fa(ng-class="account.className")
44

assets/css/directives/external-account.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,14 @@
4545
cursor: default;
4646
}
4747

48+
&.connecting {
49+
cursor: default;
50+
}
51+
52+
&.disabled {
53+
cursor: default;
54+
}
55+
4856
.external-account-box {
4957
display: flex;
5058
flex-direction: column;

0 commit comments

Comments
 (0)