What is the proper way to include a stylesheet with my options panels in wp-admin for a given plugin or theme. In other words -- the stylesheet that styles the panels.
I mean, in my panel template code, I'm doing something like...
<style type="text/css">
@import url("../wp-content/plugins/myplugin/panels/style.css");
</style>
...but suspect that this won't work on some installs of WordPress because of paths and so on, and might not work in the future of WP gets a wild hair and wants to rename wp-content with something else.