Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 484519

Summary: New table layout not mobile friendly
Product: Community Reporter: Holger Bruch <holger.bruch>
Component: MarketplaceAssignee: Martin Lowe <martin.lowe>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3 CC: chris.guindon
Version: unspecified   
Target Milestone: ---   
Hardware: Other   
OS: iOS   
Whiteboard: stalebug
Attachments:
Description Flags
Plugin name and download numbers not readable none

Description Holger Bruch CLA 2015-12-16 15:26:56 EST
Created attachment 258740 [details]
Plugin name and download numbers not readable

The new scrollable table layout is merely unusable with a smartphone. 
It's responding slowly and does not show the donwload numbers and plugin name together. See attached screenshot.
Comment 1 Christopher Guindon CLA 2015-12-17 14:14:54 EST
Is this screenshot from the homepage?
Comment 2 Holger Bruch CLA 2015-12-17 14:49:55 EST
The screenshot is from the metrics->Successfull installs-> Alltimes page,  accessed via safari.
Comment 3 Christopher Guindon CLA 2015-12-17 15:41:30 EST
I see what you mean now!

After a bit of investigation we found that there is two possible solutions for this problem.

1) Disable responsive table for all tables. 

--or---

2) Remove white-space: nowrap; from .table-responsive>

media="all"
@media screen and (max-width: 767px)
.table-responsive>.table>thead>tr>th, .table-responsive>.table>tbody>tr>th, .table-responsive>.table>tfoot>tr>th, .table-responsive>.table>thead>tr>td, .table-responsive>.table>tbody>tr>td, .table-responsive>.table>tfoot>tr>td {
    white-space: nowrap;
}
Comment 4 Eclipse Genie CLA 2018-10-30 00:04:01 EDT
This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet.

If you have further information on the current state of the bug, please add it. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant.

--
The automated Eclipse Genie.
Comment 5 Eclipse Genie CLA 2021-10-02 10:47:05 EDT
This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet.

If you have further information on the current state of the bug, please add it. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant.

--
The automated Eclipse Genie.
Comment 6 Christopher Guindon CLA 2021-10-05 09:14:31 EDT
(In reply to Christopher Guindon from comment #3)
> I see what you mean now!
> 
> After a bit of investigation we found that there is two possible solutions
> for this problem.
> 
> 1) Disable responsive table for all tables. 
> 
> --or---
> 
> 2) Remove white-space: nowrap; from .table-responsive>
> 
> media="all"
> @media screen and (max-width: 767px)
> .table-responsive>.table>thead>tr>th, .table-responsive>.table>tbody>tr>th,
> .table-responsive>.table>tfoot>tr>th, .table-responsive>.table>thead>tr>td,
> .table-responsive>.table>tbody>tr>td, .table-responsive>.table>tfoot>tr>td {
>     white-space: nowrap;
> }

Closing this issue since we have a solution.