Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

_atlaskit_overrides.scss 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /**
  2. * Move the @atlaskit/flag container up a little bit so it does not cover the
  3. * toolbar with the first notification.
  4. */
  5. .atlaskit-portal > #notifications-container {
  6. bottom: calc(#{$newToolbarSizeWithPadding}) !important;
  7. }
  8. .modal-dialog-form {
  9. /**
  10. * Override @atlaskit/dropdown-menu styling when in a modal because the
  11. * dropdown backgrounds clash with the modal backgrounds.
  12. */
  13. .dropdown-menu div[style*="transform"] {
  14. outline: 1px solid #455166;
  15. }
  16. }
  17. /**
  18. * Override @atlaskit/modal-dialog header styling
  19. */
  20. .atlaskit-portal [role="dialog"] header {
  21. .jitsi-icon {
  22. cursor: pointer;
  23. }
  24. .jitsi-icon svg {
  25. fill: #B8C7E0;
  26. }
  27. }
  28. /**
  29. * Make header close button more easily tappable on mobile.
  30. */
  31. .mobile-browser .atlaskit-portal [role="dialog"] header .jitsi-icon {
  32. display: grid;
  33. place-items: center;
  34. height: 48px;
  35. width: 48px;
  36. background: #2a3a4b;
  37. border-radius: 3px;
  38. }
  39. /**
  40. * Override @atlaskit/theme styling for the top toolbar so it displays over
  41. * the video thumbnail while obscuring as little as possible.
  42. */
  43. .videocontainer__toptoolbar > div > div {
  44. background: none;
  45. }
  46. /**
  47. * Keep overflow menu within screen vertical bounds and make it scrollable.
  48. */
  49. .toolbox-button-wth-dialog > div:nth-child(2) {
  50. max-height: calc(100vh - #{$newToolbarSizeWithPadding} - 46px);
  51. overflow-y: auto;
  52. }