You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * Sets the default cursor the remove password link. The link doesn't use
  3. * the href attribute, so we need to set the cursor manually.
  4. */
  5. #inviteDialogRemovePassword {
  6. cursor: hand;
  7. }
  8. .invite-dialog {
  9. .dial-in-numbers {
  10. .dial-in-numbers-conference-id {
  11. color: orange;
  12. margin-left: 3px;
  13. }
  14. /*
  15. * dial-in-numbers-copy styling is needed for the feature of copying
  16. * text to the clipboard. The styling keeps the element invisible
  17. * to the user but still programmatically selectable for copying.
  18. */
  19. .dial-in-numbers-copy {
  20. opacity: 0;
  21. pointer-events: none;
  22. position: fixed;
  23. -webkit-user-select: text;
  24. user-select: text;
  25. }
  26. .is-disabled,
  27. .is-loading {
  28. .dial-in-numbers-trigger-icon {
  29. display: none;
  30. }
  31. }
  32. }
  33. .form-control {
  34. padding: 0;
  35. &__container {
  36. /**
  37. * Ensure contents display in a line and vertically centered.
  38. */
  39. align-items: center;
  40. button {
  41. font-size: $modalButtonFontSize;
  42. }
  43. }
  44. &__input-container {
  45. flex: 1;
  46. margin-right: 10px;
  47. .dropdown-button-trigger {
  48. text-align: left;
  49. }
  50. }
  51. }
  52. .inviteLink {
  53. color: $readOnlyInputColor;
  54. }
  55. .lock-state {
  56. display: flex;
  57. }
  58. .password-overview {
  59. margin-top: 10px;
  60. .form-control {
  61. margin-top: 10px;
  62. }
  63. .password-overview-status,
  64. .remove-password {
  65. display: flex;
  66. justify-content: space-between;
  67. }
  68. .password-overview-toggle-edit,
  69. .remove-password-link {
  70. cursor: pointer;
  71. text-decoration: none;
  72. }
  73. .remove-password {
  74. margin-top: 15px;
  75. }
  76. }
  77. .remove-password-current {
  78. color: $inputControlEmColor;
  79. }
  80. }