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

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