Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

_atlaskit_overrides.scss 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. .jIMojv{
  6. bottom: calc(#{$newToolbarSizeWithPadding}) !important;
  7. }
  8. /**
  9. * Disable the slide-in animation for @atlaskit/flag due to the animation
  10. * repeating for each queued flag once it becomes the top flag.
  11. */
  12. .mIBKA:first-child {
  13. animation: cbfRuT 0s !important;
  14. -webkit-animation: cbfRuT 0s !important;
  15. }
  16. .modal-dialog-form {
  17. /**
  18. * Update the @atlaskit/dropdown-menu trigger wrapper to make sure it looks
  19. * click-able.
  20. */
  21. .cjJUnw {
  22. cursor: pointer;
  23. }
  24. /**
  25. * Override @atlaskit/dropdown-menu styling when in a modal because the
  26. * dropdown backgrounds clash with the modal backgrounds.
  27. */
  28. .cksvax[data-role=droplistContent] {
  29. border: 1px solid #455166;
  30. }
  31. }
  32. /**
  33. * Override @atlaskit/theme styling for the top toolbar so it displays over
  34. * the video thumbnail while obscuring as little as possible.
  35. */
  36. .videocontainer .tOoji {
  37. background: none;
  38. }
  39. /**
  40. * Override @atlaskit/InlineDialog styling for the overflowmenu so it displays
  41. * with the correct height.
  42. */
  43. .toolbox-button-wth-dialog .eYJELv {
  44. max-height: initial;
  45. }
  46. /**
  47. * Override @atlaskit/InlineDialog styling for the overflowmenu so it displays
  48. * a scrollable list of elements at small screen widths.
  49. */
  50. .sc-eNQAEJ {
  51. overflow-y: auto;
  52. }
  53. /**
  54. * Keep overflow menu within screen vertical bounds and make it scrollable.
  55. */
  56. .toolbox-button-wth-dialog .sc-ckVGcZ.fdAqDG > :first-child {
  57. max-height: calc(100vh - #{$newToolbarSizeWithPadding} - 16px);
  58. overflow-y: auto;
  59. }