Fixes cdn issue with remove password link.

pull/1014/head
yanas 9 years ago
parent 688e71cd1b
commit 22a2d85ee2
  1. 1
      css/main.scss
  2. 7
      css/modals/invite/_invite.scss
  3. 2
      modules/UI/invite/InviteDialogView.js

@ -60,5 +60,6 @@
@import 'input-control/input-control';
@import 'shortcuts/main';
@import 'buttons/button-control';
@import "modals/invite/invite";
/* Modules END */

@ -0,0 +1,7 @@
/*
* Sets the default cursor the remove password link. The link doesn't use
* the href attribute, so we need to set the cursor manually.
*/
#inviteDialogRemovePassword {
cursor: hand;
}

@ -220,7 +220,7 @@ export default class InviteDialogView {
</p>
<a class="link input-control__right"
id="inviteDialogRemovePassword"
href="#" data-i18n="${removePassKey}">
data-i18n="${removePassKey}">
${removePassText}
</a>
</div>

Loading…
Cancel
Save