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

_drawer.scss 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. .drawer-portal {
  2. position: absolute;
  3. left: 0;
  4. right: 0;
  5. bottom: 0;
  6. z-index: $drawerZ;
  7. border-radius: 16px 16px 0 0;
  8. &.notification-portal {
  9. z-index: $dropdownZ;
  10. }
  11. }
  12. .drawer-portal::after {
  13. content: '';
  14. background-color: $participantsPaneBgColor;
  15. margin-bottom: env(safe-area-inset-bottom, 0);
  16. }
  17. .drawer-menu-container {
  18. height: 100vh;
  19. display: flex;
  20. align-items: flex-end;
  21. }
  22. .drawer-menu {
  23. background: #242528;
  24. border-radius: 16px 16px 0 0;
  25. overflow-y: auto;
  26. margin-bottom: env(safe-area-inset-bottom, 0);
  27. width: 100%;
  28. .drawer-toggle {
  29. display: flex;
  30. justify-content: center;
  31. align-items: center;
  32. height: 44px;
  33. cursor: pointer;
  34. svg {
  35. fill: none;
  36. }
  37. }
  38. .popupmenu {
  39. margin: auto;
  40. width: 100%;
  41. }
  42. .popupmenu__item {
  43. height: 48px;
  44. }
  45. &#{&} .overflow-menu {
  46. margin: auto;
  47. font-size: 1.2em;
  48. list-style-type: none;
  49. padding: 0;
  50. height: calc(80vh - 144px - 64px);
  51. overflow-y: auto;
  52. .overflow-menu-item {
  53. box-sizing: border-box;
  54. height: 48px;
  55. padding: 12px 16px;
  56. align-items: center;
  57. color: $overflowMenuItemColor;
  58. cursor: pointer;
  59. display: flex;
  60. font-size: 16px;
  61. div {
  62. display: flex;
  63. flex-direction: row;
  64. align-items: center;
  65. }
  66. &.unclickable {
  67. cursor: default;
  68. }
  69. @media (hover: hover) and (pointer: fine) {
  70. &.unclickable:hover {
  71. background: inherit;
  72. }
  73. }
  74. &.disabled {
  75. cursor: initial;
  76. color: #3b475c;
  77. }
  78. }
  79. .profile-text {
  80. max-width: 100%;
  81. text-overflow: ellipsis;
  82. overflow: hidden;
  83. white-space: nowrap;
  84. }
  85. }
  86. }