UsersHomepageFooter.module.scss 2.3 KB

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