Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

_invite.scss 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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-copy {
  11. opacity: 0;
  12. pointer-events: none;
  13. position: fixed;
  14. user-select: text;
  15. -webkit-user-select: text;
  16. }
  17. .dial-in-numbers-conference-id {
  18. color: orange;
  19. margin-left: 3px;
  20. }
  21. .dial-in-numbers-trigger {
  22. position: relative;
  23. width: 100%;
  24. .dial-in-numbers-trigger-icon {
  25. position: absolute;
  26. right: 0;
  27. top: 4px;
  28. }
  29. }
  30. .is-disabled,
  31. .is-loading {
  32. .dial-in-numbers-trigger-icon {
  33. display: none;
  34. }
  35. }
  36. }
  37. .form-control {
  38. padding: 0;
  39. }
  40. .inviteLink {
  41. color: $readOnlyInputColor;
  42. }
  43. .lock-state {
  44. display: flex;
  45. }
  46. .password-overview {
  47. margin-top: 10px;
  48. .form-control {
  49. margin-top: 10px;
  50. }
  51. .password-overview-status,
  52. .remove-password {
  53. display: flex;
  54. justify-content: space-between;
  55. }
  56. .password-overview-toggle-edit,
  57. .remove-password-link {
  58. cursor: pointer;
  59. text-decoration: none;
  60. }
  61. .remove-password {
  62. margin-top: 15px;
  63. }
  64. }
  65. .remove-password-current {
  66. color: $inputControlEmColor;
  67. }
  68. }