UserManagement.module.scss 825 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. @use '@growi/core-styles/scss/bootstrap/init' as bs;
  2. // styles for admin user search
  3. .search-typeahead :global {
  4. position: relative;
  5. width: 100%;
  6. // corner radius
  7. border-top-right-radius: bs.$border-radius;
  8. border-bottom-right-radius: bs.$border-radius;
  9. .rbt-input-main {
  10. padding-right: 36px;
  11. }
  12. .search-clear {
  13. position: absolute;
  14. top: 15px;
  15. right: 1px;
  16. z-index: 3;
  17. width: 24px;
  18. height: 24px;
  19. padding: 0;
  20. line-height: 0;
  21. }
  22. .rbt-menu {
  23. max-height: none !important;
  24. margin-top: 3px;
  25. li a span {
  26. .page-path {
  27. display: inline;
  28. padding: 0 4px;
  29. color: inherit;
  30. }
  31. .page-list-meta {
  32. font-size: 0.9em;
  33. color: bs.$gray-400;
  34. > span {
  35. margin-right: 0.3rem;
  36. }
  37. }
  38. }
  39. }
  40. }