• Hi and thanks for your work on this plugin ??

    I noticed the ticket list in the back end does not style correctly in the backend; checked it and managed to make it work and look much better with some CSS rules.

    Here’s the code, in case someone found it useful:
    (beware that some rules are affecting other tables in backend, like posts and pages, but it works well this way)

    
    /* Admin Tickets TABLE START */
    @media screen and (max-width: 782px) {
    	td.column-status {
    		display:none!important;
    	}
    	td.column-status:before {
    		display:none!important;
    	}
    	.wp-list-table td {
    		width: 100%!important;
    	}
    	td.check-column {
    		width: 35px!important;
    	}
    	th#status {
    		display: none;
    	}
    	th.column-status {
    		display: none;
    	}
    	td.column-status {
    		display: none!important;
    	}
    	td.column-title {
    		max-width: inherit!important;
    	}
    }
    /* Admin Tickets TABLE END */
    
  • The topic ‘Back end list mobile friendly’ is closed to new replies.