您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_atlaskit_overrides.scss 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 svg {
  22. fill: #B8C7E0;
  23. cursor: pointer;
  24. }
  25. }
  26. /**
  27. * Override @atlaskit/theme styling for the top toolbar so it displays over
  28. * the video thumbnail while obscuring as little as possible.
  29. */
  30. .videocontainer__toptoolbar > div > div {
  31. background: none;
  32. }
  33. /**
  34. * Keep overflow menu within screen vertical bounds and make it scrollable.
  35. */
  36. .toolbox-button-wth-dialog > div:nth-child(2) {
  37. max-height: calc(100vh - #{$newToolbarSizeWithPadding} - 46px);
  38. overflow-y: auto;
  39. }