| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- @use '@growi/ui/scss/molecules/page_list';
- $grw-sidebar-content-header-height: 58px;
- $grw-sidebar-content-footer-height: 50px;
- .user-page-footer :global {
- .grw-user-page-list-m {
- .growi-custom-icons {
- font-size: 1.1em;
- }
- .list-group {
- .list-group-item {
- .grw-visible-on-hover {
- display: none;
- }
- &:hover {
- .grw-visible-on-hover {
- display: block;
- }
- }
- min-height: 40px;
- border-radius: 0;
- &.grw-bookmark-item-list {
- .user-picture {
- width: 16px;
- height: 16px;
- vertical-align: text-bottom;
- &.user-picture-md {
- width: 20px;
- height: 20px;
- }
- }
- svg {
- width: 14px;
- height: 14px;
- }
- .grw-foldertree-control {
- margin-left: 1rem;
- }
- }
- }
- }
- .grw-foldertree-item-container {
- input {
- max-width: 25%;
- }
- }
- .grw-foldertree-title-anchor {
- width: fit-content !important;
- margin-right: 20px;
- }
- .new-bookmark-folder {
- max-height: 30px;
- }
- .grw-expand-compress-btn {
- max-height: 40px;
- }
- .grw-folder-tree-container {
- .grw-drop-item-area {
- padding: 1rem;
- .grw-accept-drop-item {
- padding: 0.5rem;
- border-style: dashed;
- border-width: 0.15rem;
- }
- }
- }
- }
- }
- .grw-bookarks-contents-compressed {
- max-height: calc(70vh - ($grw-sidebar-content-header-height + $grw-sidebar-content-footer-height));
- overflow-y: scroll;
- }
- .grw-bookarks-contents-expanded {
- max-height: calc(100vh - ($grw-sidebar-content-header-height + $grw-sidebar-content-footer-height));
- overflow-y: scroll;
- }
|