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.

_info.scss 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .info-dialog {
  2. cursor: default;
  3. display: flex;
  4. .info-dialog-action-link {
  5. display: inline-block;
  6. a {
  7. cursor: pointer;
  8. }
  9. }
  10. .info-dialog-action-link:before {
  11. color: $linkFontColor;
  12. content: '\2022';
  13. padding: 0 10px;
  14. }
  15. .info-dialog-action-link:first-child:before {
  16. content: '';
  17. padding: 0;
  18. }
  19. .info-dialog-action-links {
  20. white-space: nowrap;
  21. }
  22. .info-dialog-action-separator {
  23. display: inline-block;
  24. }
  25. .info-dialog-copy-element {
  26. opacity: 0;
  27. pointer-events: none;
  28. position: fixed;
  29. -webkit-user-select: text;
  30. user-select: text;
  31. }
  32. .info-dialog-column {
  33. margin-right: 10px;
  34. }
  35. .info-dialog-conference-url {
  36. margin: 10px 0;
  37. max-width: 250px;
  38. overflow: hidden;
  39. text-overflow: ellipsis;
  40. white-space: nowrap;
  41. }
  42. .info-dialog-icon {
  43. color: #6453C0;
  44. font-size: 16px;
  45. }
  46. .info-dialog-title {
  47. font-weight: bold;
  48. }
  49. }