Trang web này sẽ có chức năng hạn chế trong khi chúng tôi trải qua bảo trì để cải thiện trải nghiệm của bạn. Nếu một bài viết không giải quyết được vấn đề của bạn và bạn muốn đặt câu hỏi, chúng tôi có cộng đồng hỗ trợ của chúng tôi đang chờ để giúp bạn tại @FirefoxSupport trên Twitter và /r/firefox trên Reddit.

Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

Bookmarks toolbar doesn't display all bookmarks added to it

  • 9 trả lời
  • 1 gặp vấn đề này
  • 1 lượt xem
  • Trả lời mới nhất được viết bởi webnick

more options

My bookmarks toolbar doesn't display all bookmarks added to it. I added a chrome file and the following to it:

  1. PersonalToolbar {
 --multirow-bmb-n-rows: 5; /* Control how many rows are shown before scrolling */
 --multirow-bmb-row-margin: 4px; /* Control how much spacing is between rows */
 max-height: none !important;

}

  1. PlacesToolbar > hbox {
 display: block;
 width: 100vw;

}

  1. PlacesToolbarItems {
 display: flex;
 flex-wrap: wrap;
 /* --uc-bm-padding is defined in autohide_bookmarks_toolbar.css */
 max-height: calc(var(--multirow-bmb-n-rows) * (5px + 1em + (2 * (var(--multirow-bmb-row-margin) + var(--uc-bm-padding,2px))))) !important;
 overflow-y:auto;
 scrollbar-color: var(--lwt-accent-color) var(--toolbar-bgcolor) ;
 scrollbar-width: thin;

}

/* Hide the all-bookmarks button */

  1. PlacesChevron{ display: none }

/* Add some spacing between rows */

  1. PlacesToolbarItems > .bookmark-item { margin: var(--multirow-bmb-row-margin) 3px !important; }
  1. personal-bookmarks #PlacesToolbar #PlacesToolbarItems {
 overflow-x: visible;
 overflow-y: visible;

}

While the toolbar now displays 2 1/2 rows of bookmarks, there are many bookmarks it doesn't display, and most of the 3rd row is empty. Is there a maximum number of bookmarks one can assign to the multirow bookmarks toolbar via this coding? Is there some coding I need to add to get those remaining bookmarks to display?

Thanks so much!!!

My bookmarks toolbar doesn't display all bookmarks added to it. I added a chrome file and the following to it: #PersonalToolbar { --multirow-bmb-n-rows: 5; /* Control how many rows are shown before scrolling */ --multirow-bmb-row-margin: 4px; /* Control how much spacing is between rows */ max-height: none !important; } #PlacesToolbar > hbox { display: block; width: 100vw; } #PlacesToolbarItems { display: flex; flex-wrap: wrap; /* --uc-bm-padding is defined in autohide_bookmarks_toolbar.css */ max-height: calc(var(--multirow-bmb-n-rows) * (5px + 1em + (2 * (var(--multirow-bmb-row-margin) + var(--uc-bm-padding,2px))))) !important; overflow-y:auto; scrollbar-color: var(--lwt-accent-color) var(--toolbar-bgcolor) ; scrollbar-width: thin; } /* Hide the all-bookmarks button */ #PlacesChevron{ display: none } /* Add some spacing between rows */ #PlacesToolbarItems > .bookmark-item { margin: var(--multirow-bmb-row-margin) 3px !important; } #personal-bookmarks #PlacesToolbar #PlacesToolbarItems { overflow-x: visible; overflow-y: visible; } While the toolbar now displays 2 1/2 rows of bookmarks, there are many bookmarks it doesn't display, and most of the 3rd row is empty. Is there a maximum number of bookmarks one can assign to the multirow bookmarks toolbar via this coding? Is there some coding I need to add to get those remaining bookmarks to display? Thanks so much!!!

Được chỉnh sửa bởi webnick vào

Tất cả các câu trả lời (9)

more options

I notice you have this property rule in your code: width: 300vw; This would normally be width: 100vw;

#PlacesToolbar > hbox{
  display: block;
  width: 100vw;
}

more options

cor-el, yes, I should have changed it back to 100; I'd changed the value hoping that this would be a cure. Obviously, it's not and I'll change it back.

more options

Are there bookmarks with long titles that are cropped to make them fit ?

Maybe edit the titles to give them a fixed length to fully display them.

more options

All are icons - no titles at all.

more options

No one have a solution?

more options

Does it has effect if you do not clear the titles if that is what you currently do ?

more options

Sorry, cor-el, I don't understand the question.

more options

Hopefully I've properly attached a screenshot showing the unused area of my multi-row bookmarks. Any bookmark saved to this folder does not display unless inserted between other bookmarks, at which point a bookmark at the end of the last row will disappear (it remains in the folder, just doesn't display).

more options

Still no solution? Is there a maximum number of bookmark icons that this toolbar can display?