UserManagement.module.scss 951 B

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