Child Theme with multiple style sheets
ClassiPress uses multiple style sheets. (style.css, teal.css, admin-bar.min.css, etc.)
I've created a child theme folder. I've placed a styles.css sheet within my child theme folder, and added the proper header and @import function to that new style sheet. I've added a bunch of css changes to this new style sheet. When I activate the new child theme, most of the changes work fine.
However, the elements that are styled by the parent teal.css or the admin-bar.min.css style sheets aren't affected by css that I add to the child theme's styles.css style sheet.
So I tried adding other style sheets to the child theme folder and placed the css changes in the appropriately named style sheets. I tried placing them within the main child them folder and within a folder using the same file structure as the parent. I tried each style sheet with and without an @import function. No matter what combination I tried, nothing happened.
So my question is: How do I get wordpress to recognize the other style sheets in a child theme?