DJFireCFH Posted October 11, 2013 Share Posted October 11, 2013 Is it possible to make it that when you select a checkbox that it could color that whole line.. (example: say you have 100 tickets, I want to select them all, but I need to uncheck some, so the selected ones, have a different color so you know whats selected and whats not for faster looking through them).. Is there a CSS file or something I could edit and do it myself? 0 Quote Link to comment Share on other sites More sharing options...
Kian Posted October 11, 2013 Share Posted October 11, 2013 Do you have to make it for lists in backend or frontend? I ask this because in frontend for sure it's possible and quite easy but backend could be a bit tricky because there are few tpl files available. Anyway you should make something like this. input[type="checkbox"]:checked+label{background:red; color:blue} 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.