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".

Learn More

Bug in pagination CSS on these support forums

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

more options

Hi Just noticed the pagination buttons in these forums are screwed to the right side... and then i searched and found that in this file, you have a css entry .cf { } which is empty... i assume it should have { clear: both } ? This is the css file which has it empty http://support.cdn.mozilla.net/media/css/common-min.css?build=2e2daad And here's a screenshot of how it looks now http://scr.hu/screenshooter/0640523/ypubyvb

Thanks

Hi Just noticed the pagination buttons in these forums are screwed to the right side... and then i searched and found that in this file, you have a css entry .cf { } which is empty... i assume it should have { clear: both } ? This is the css file which has it empty http://support.cdn.mozilla.net/media/css/common-min.css?build=2e2daad And here's a screenshot of how it looks now http://scr.hu/screenshooter/0640523/ypubyvb Thanks

Giải pháp được chọn

It's fixed now. See here for example: https://support.mozilla.org/en-US/questions/944191

Thanks again for reporting! And if you see anything else, please let us know in the contributor forums.

Thanks!
Kadir

Đọc câu trả lời này trong ngữ cảnh 👍 1

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

more options

I use this code in userContent.css to fix this issue and style that section (I like to dim stuff).

@-moz-document domain(support.mozilla.org) {
 ol.pagination {margin:5px 0!important;padding:0!important;float:right;clear:both;opacity:0.5}
 ol.pagination:hover {opacity:1}
 ol.pagination a {font-weight:bold;font-size:1.3em!important}
}
more options

Thanks for the report, kmz111! The empty .cf is actually okay, it's the clear fix hack. There is a .cf:after {clear:both} that takes care of fit, but in this case, it should have gone in a grid_12 class.

I filed a bug and will take care of it: https://bugzilla.mozilla.org/show_bug.cgi?id=821488

Thanks again!

more options

ah cool, glad to help!

more options

Giải pháp được chọn

It's fixed now. See here for example: https://support.mozilla.org/en-US/questions/944191

Thanks again for reporting! And if you see anything else, please let us know in the contributor forums.

Thanks!
Kadir

more options

Aha, will keep an eye on that now :)

more options