UsersHomepageFooter.module.scss 2.2 KB

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