kenandervisevic / redmine_issue_view_columns

Redmine plugin to customize shown columns in subtasks and related issues on issue page
GNU General Public License v2.0
12 stars 6 forks source link

Display problems with mobile/small screen #2

Closed TrumanRu closed 5 years ago

TrumanRu commented 5 years ago

Steps to reproduce:

  1. Open issue with related/sub tasks
  2. Resize browser window to less than 900px
  3. Both lists are adapted but looks so thin

It's because of table's headers.

I've cured it by CSS (used View Customize plugin):

@media screen and (max-width: 899px) {
  table.list.issues > tbody > tr:first-child {
    display: none;
  }
}
kenandervisevic commented 5 years ago

Thanks for the info about this. I'll test and push the code :)

kenandervisevic commented 5 years ago

added in 4c11bdd