Making WordPress.org

Ticket #6520: 6520.2.patch

File 6520.2.patch, 542 bytes (added by sagarladani, 14 months ago)

There is no need of adding scroll css on mobile screen. We only required for the desktop and tablet screen, width between 1040 to 771px. So I made the css for this width only.

  • wordpress.org/public_html/style/trac/common/css/trac.css

     
    974974  box-shadow: none;
    975975 }
    976976}
     977
     978@media screen and (min-device-width: 771px) and (max-device-width: 1040px) {
     979   table.listing {
     980    display: block;
     981    overflow-x: auto;
     982    white-space: nowrap;
     983  }
     984}
     985 No newline at end of file