UsersHomepageFooter.module.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. @use '@growi/ui/src/styles/molecules/page_list';
  2. $grw-sidebar-content-header-height: 58px;
  3. $grw-sidebar-content-footer-height: 50px;
  4. .user-page-footer :global {
  5. .grw-user-page-list-m {
  6. .list-group{
  7. .list-group-item {
  8. .grw-visible-on-hover {
  9. display: none;
  10. }
  11. &:hover {
  12. .grw-visible-on-hover {
  13. display: block;
  14. }
  15. }
  16. .grw-triangle-container{
  17. svg {
  18. width: 12px;
  19. height: 12px;
  20. }
  21. }
  22. svg{
  23. width: 20px;
  24. height: 20px;
  25. }
  26. min-height: 40px;
  27. border-radius: 0px;
  28. &.grw-bookmark-item-list {
  29. .picture {
  30. width: 16px;
  31. height: 16px;
  32. vertical-align: text-bottom;
  33. &.picture-md {
  34. width: 20px;
  35. height: 20px;
  36. }
  37. }
  38. svg{
  39. width: 14px;
  40. height: 14px;
  41. }
  42. .grw-foldertree-control{
  43. margin-left: 1rem;
  44. }
  45. }
  46. }
  47. }
  48. .grw-foldertree-item-container {
  49. input {
  50. max-width: 25%;
  51. }
  52. }
  53. .grw-foldertree-title-anchor{
  54. width: fit-content !important;
  55. margin-right: 20px;
  56. }
  57. svg {
  58. width: 35px;
  59. height: 35px;
  60. margin-bottom: 6px;
  61. }
  62. .new-bookmark-folder{
  63. max-height: 30px;
  64. svg {
  65. width: 18px;
  66. height: 18px;
  67. }
  68. }
  69. .grw-expand-compress-btn {
  70. max-height: 40px;
  71. svg {
  72. width: 18px;
  73. height: 18px;
  74. margin-bottom: 3px;
  75. }
  76. }
  77. .grw-folder-tree-container {
  78. .grw-drop-item-area {
  79. padding: 1rem;
  80. .grw-accept-drop-item {
  81. padding: 0.5rem;
  82. border-style: dashed;
  83. border-width: 0.15rem;
  84. }
  85. }
  86. }
  87. }
  88. }
  89. .grw-bookarks-contents-compressed {
  90. max-height: calc(70vh - ($grw-sidebar-content-header-height + $grw-sidebar-content-footer-height));
  91. overflow-y: scroll;
  92. }
  93. .grw-bookarks-contents-expanded {
  94. max-height: calc(100vh - ($grw-sidebar-content-header-height + $grw-sidebar-content-footer-height));
  95. overflow-y: scroll;
  96. }